Skip to content

Release #666

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
768cc59
Updated feed to release
Sep 19, 2014
111d693
Merge pull request #148 from aspnet/UpdateKREFeed
Sep 19, 2014
0ffb023
updated project.json and fix error in startup
ajaybhargavb Oct 30, 2014
acb8edd
updated consoleapp project.json
ajaybhargavb Nov 4, 2014
1234f3d
fix for kvm.ps1
ajaybhargavb Nov 4, 2014
531cbbb
updated system.console pkg version
ajaybhargavb Nov 5, 2014
b2c0ced
porting master to release and updating changes to beta2
Dec 9, 2014
d4f4e9c
Updating kvm scripts in home/release branch.
Jan 6, 2015
162d3c5
:arrow_up: dotnetsdk.ps1, dotnetsdk.cmd, dotnetsdk.sh
Jan 22, 2015
9f0fd62
:arrow_up: kvm.ps1, kvm.cmd, kvm.sh
Jan 30, 2015
0bc5685
:arrow_up: kvm.ps1, kvm.cmd, kvm.sh
Jan 30, 2015
065c6ee
:lipstick: clean up README and add support for using other branches o…
analogrelay Feb 2, 2015
9556d0d
change the way parameters are passed to kvminstall.ps1
analogrelay Feb 2, 2015
4f0a9de
one more try to get powershell to behave
analogrelay Feb 2, 2015
e22b86a
added message with source url
analogrelay Feb 2, 2015
582c86c
update command for installing dev kvm
analogrelay Feb 2, 2015
ceac364
update kvm.sh install directory
analogrelay Feb 2, 2015
9231689
spew download url from kvminstall.sh
analogrelay Feb 2, 2015
3c85138
:lipstick: fix typo
analogrelay Feb 2, 2015
54ffcdc
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Mar 26, 2015
9e1bcf8
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Mar 28, 2015
a6de21a
Updating instructions for Mac OS
Mar 30, 2015
e226b06
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Mar 31, 2015
23437fd
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Apr 3, 2015
b415a6b
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Apr 16, 2015
5e57d37
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
May 27, 2015
d06d1b1
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Jun 2, 2015
fdab041
:arrow_up: dnvm.ps1, dnvm.cmd, dnvm.sh
Jun 8, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Please log a new issue in the appropriate GitHub repo. Here are some of the most
* [MVC](https://github.com/aspnet/Mvc)
* [SignalR-Server](https://github.com/aspnet/SignalR-Server)

The full repo list is [here](https://github.com/aspnet).
A description of all the repos is [here](https://github.com/aspnet/Home/wiki/Repo-List).


## Other discussions
Expand Down Expand Up @@ -53,6 +53,10 @@ Before submitting a feature or substantial code contribution please discuss it w

Here's a few things you should always do when making changes to the code base:

**Engineering guidelines**

The coding, style, and general engineering guidelines are published on the [Engineering guidelines](https://github.com/aspnet/Home/wiki/Engineering-guidelines) page.

**Commit/Pull Request Format**

```
Expand Down
2 changes: 1 addition & 1 deletion NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v2" />
<add key="AspNetRelease" value="https://www.myget.org/F/aspnetrelease/api/v2" />
<add key="NuGet.org" value="https://nuget.org/api/v2/" />
</packageSources>
</configuration>
197 changes: 103 additions & 94 deletions README.md

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dnvm.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@Echo off

set DNVM_CMD_PATH_FILE="%USERPROFILE%\.dnx\temp-set-envvars.cmd"

PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';$CmdPathFile='%DNVM_CMD_PATH_FILE%';& '%~dp0dnvm.ps1' %*"

IF EXIST %DNVM_CMD_PATH_FILE% (
CALL %DNVM_CMD_PATH_FILE%
DEL %DNVM_CMD_PATH_FILE%
)
Loading