#718 Test against the latest build of AspNetCoreModule
This commit is contained in:
parent
31dbb89968
commit
7c63dbe409
|
|
@ -2,8 +2,8 @@
|
|||
"authors": [
|
||||
"Microsoft"
|
||||
],
|
||||
"description": "Music store application on ASP.NET 5",
|
||||
"version": "1.1.0-*",
|
||||
"description": "Music store application on ASP.NET Core",
|
||||
"version": "1.2.0-*",
|
||||
"buildOptions": {
|
||||
"compile": {
|
||||
"exclude": [
|
||||
|
|
@ -45,6 +45,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.AspNetCoreModule": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Cookies": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Facebook": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Google": "1.2.0-*",
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
"authors": [
|
||||
"Microsoft"
|
||||
],
|
||||
"description": "Music store application on ASP.NET 5",
|
||||
"version": "1.1.0-*",
|
||||
"description": "Music store application on ASP.NET Core",
|
||||
"version": "1.2.0-*",
|
||||
"buildOptions": {
|
||||
"copyToOutput": {
|
||||
"include": [
|
||||
|
|
@ -34,6 +34,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.AspNetCoreModule": "1.0.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Cookies": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Facebook": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.Google": "1.2.0-*",
|
||||
|
|
|
|||
|
|
@ -253,7 +253,7 @@
|
|||
<add name="ManagedEngine64" image="%windir%\Microsoft.NET\Framework64\v2.0.50727\webengine.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness64" />
|
||||
<add name="ManagedEngineV4.0_32bit" image="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness32" />
|
||||
<add name="ManagedEngineV4.0_64bit" image="%windir%\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness64" />
|
||||
<add name="AspNetCoreModule" image="%SystemRoot%\system32\inetsrv\aspnetcore.dll" />
|
||||
<add name="AspNetCoreModule" image="[ANCMPath]" />
|
||||
</globalModules>
|
||||
|
||||
<httpCompression directory="%TEMP%\iisexpress\IIS Temporary Compressed Files">
|
||||
|
|
|
|||
|
|
@ -253,7 +253,7 @@
|
|||
<add name="ManagedEngine64" image="%windir%\Microsoft.NET\Framework64\v2.0.50727\webengine.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness64" />
|
||||
<add name="ManagedEngineV4.0_32bit" image="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness32" />
|
||||
<add name="ManagedEngineV4.0_64bit" image="%windir%\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness64" />
|
||||
<add name="AspNetCoreModule" image="%SystemRoot%\system32\inetsrv\aspnetcore.dll" />
|
||||
<add name="AspNetCoreModule" image="[ANCMPath]" />
|
||||
</globalModules>
|
||||
|
||||
<httpCompression directory="%TEMP%\iisexpress\IIS Temporary Compressed Files">
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"Microsoft.AspNetCore.Authentication.Cookies": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Identity": "1.2.0-*",
|
||||
"Microsoft.AspNetCore.Server.IntegrationTesting": "0.2.0-*",
|
||||
"Microsoft.AspNetCore.Server.IntegrationTesting": "0.3.0-*",
|
||||
"Microsoft.AspNetCore.WebUtilities": "1.2.0-*",
|
||||
"Microsoft.Extensions.Configuration.Binder": "1.2.0-*",
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.2.0-*",
|
||||
|
|
@ -30,5 +30,19 @@
|
|||
"Microsoft.Extensions.SecretManager.Tools": "1.0.0-*"
|
||||
},
|
||||
"testRunner": "xunit",
|
||||
"userSecretsId": "MusicStore.E2ETests"
|
||||
"userSecretsId": "MusicStore.E2ETests",
|
||||
"runtimes": {
|
||||
"win7-x86": {},
|
||||
"win7-x64": {},
|
||||
|
||||
"osx.10.10-x64": {},
|
||||
"osx.10.11-x64": {},
|
||||
|
||||
"ubuntu.14.04-x64": {},
|
||||
"ubuntu.14.10-x64": {},
|
||||
"ubuntu.15.04-x64": {},
|
||||
"ubuntu.16.04-x64": {},
|
||||
"centos.7-x64": {},
|
||||
"debian.8-x64": {}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue