Fix routing build
This commit is contained in:
parent
b4099adefb
commit
48eb000a0e
|
|
@ -8,6 +8,8 @@ packages/
|
|||
artifacts/
|
||||
PublishProfiles/
|
||||
.vs/
|
||||
.build/
|
||||
.testPublish/
|
||||
bower_components/
|
||||
node_modules/
|
||||
**/wwwroot/lib/
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
"dependencies": {
|
||||
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Routing.Extensions": "1.0.0-*"
|
||||
"Microsoft.AspNetCore.Routing.Extensions": "1.0.0-*",
|
||||
"Microsoft.NETCore.Platforms": "1.0.1-*"
|
||||
},
|
||||
"compilationOptions": {
|
||||
"emitEntryPoint": true
|
||||
|
|
@ -12,6 +13,8 @@
|
|||
},
|
||||
"frameworks": {
|
||||
"dnx451": { },
|
||||
"dnxcore50": { }
|
||||
"dnxcore50": {
|
||||
"imports": "portable-net451+win8"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Testing": "1.0.0-*",
|
||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||
"xunit": "2.1.0"
|
||||
},
|
||||
"frameworks": {
|
||||
|
|
@ -12,7 +13,8 @@
|
|||
"dependencies": {
|
||||
"moq.netcore": "4.4.0-beta8",
|
||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||
}
|
||||
},
|
||||
"imports": "portable-net451+win8"
|
||||
},
|
||||
"dnx451": {
|
||||
"frameworkAssemblies": {
|
||||
|
|
|
|||
|
|
@ -9,13 +9,15 @@
|
|||
"version": "1.0.0-*"
|
||||
},
|
||||
"Microsoft.AspNetCore.Testing": "1.0.0-*",
|
||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||
"xunit": "2.1.0"
|
||||
},
|
||||
"frameworks": {
|
||||
"dnxcore50": {
|
||||
"dependencies": {
|
||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||
}
|
||||
},
|
||||
"imports": "portable-net451+win8"
|
||||
},
|
||||
"dnx451": {
|
||||
"frameworkAssemblies": {
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
||||
"Microsoft.Extensions.Logging": "1.0.0-*",
|
||||
"Microsoft.Extensions.Logging.Testing": "1.0.0-*",
|
||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||
"xunit": "2.1.0"
|
||||
},
|
||||
"frameworks": {
|
||||
|
|
@ -16,7 +17,8 @@
|
|||
"dependencies": {
|
||||
"moq.netcore": "4.4.0-beta8",
|
||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||
}
|
||||
},
|
||||
"imports": "portable-net451+win8"
|
||||
},
|
||||
"dnx451": {
|
||||
"frameworkAssemblies": {
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
||||
"Microsoft.Extensions.Logging.Testing": "1.0.0-*",
|
||||
"Microsoft.Extensions.WebEncoders": "1.0.0-*",
|
||||
"Microsoft.NETCore.Platforms": "1.0.1-*",
|
||||
"xunit": "2.1.0"
|
||||
},
|
||||
"frameworks": {
|
||||
|
|
@ -16,7 +17,8 @@
|
|||
"dependencies": {
|
||||
"moq.netcore": "4.4.0-beta8",
|
||||
"xunit.runner.aspnet": "2.0.0-aspnet-*"
|
||||
}
|
||||
},
|
||||
"imports": "portable-net451+win8"
|
||||
},
|
||||
"dnx451": {
|
||||
"frameworkAssemblies": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue