Fix samples used by tests
This commit is contained in:
parent
da93a75da4
commit
bb4a04b3a3
|
|
@ -19,7 +19,11 @@
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": { },
|
"dnx451": { },
|
||||||
"dnxcore50": { }
|
"dnxcore50": {
|
||||||
|
"dependencies": {
|
||||||
|
"NETStandard.Library": "1.0.0-*"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"publishExclude": [
|
"publishExclude": [
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ namespace LocalizationWebsite
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
var host = new WebHostBuilder()
|
var host = new WebHostBuilder()
|
||||||
|
.UseServer("Microsoft.AspNetCore.Server.Kestrel")
|
||||||
.UseDefaultConfiguration(args)
|
.UseDefaultConfiguration(args)
|
||||||
.UseStartup("LocalizationWebsite")
|
.UseStartup("LocalizationWebsite")
|
||||||
.Build();
|
.Build();
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"server": "Microsoft.AspNetCore.Server.Kestrel"
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue