Clean up samples to work with the current tooling.

This commit is contained in:
Chris Ross 2015-04-06 13:59:26 -07:00
parent eff1181d62
commit 1656d224f0
4 changed files with 46 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
[Bb]in/ [Bb]in/
TestResults/ TestResults/
.nuget/ .nuget/
.vs/
_ReSharper.*/ _ReSharper.*/
packages/ packages/
artifacts/ artifacts/

View File

@ -1,6 +1,9 @@
{ {
"dependencies": { "dependencies": {
},
"commands": {
"ConsoleApp": "ConsoleApp"
}, },
"frameworks": { "frameworks": {
"dnx451": { }, "dnx451": { },

View File

@ -0,0 +1,21 @@
{
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNET_ENV": "Development"
}
},
"kestrel": {
"commandName": "kestrel",
"launchBrowser": true,
"launchUrl": "http://localhost:5004"
},
"web": {
"commandName": "web",
"launchBrowser": true,
"launchUrl": "http://localhost:5001"
}
}
}

View File

@ -0,0 +1,21 @@
{
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNET_ENV": "Development"
}
},
"kestrel": {
"commandName": "kestrel",
"launchBrowser": true,
"launchUrl": "http://localhost:5004"
},
"web": {
"commandName": "web",
"launchBrowser": true,
"launchUrl": "http://localhost:5001"
}
}
}