#126 Test the bin deployed aspnetcore.dll

This commit is contained in:
Chris R 2016-11-22 16:05:42 -08:00
parent 0d54ee5fcc
commit 4a5d8f2960
5 changed files with 1035 additions and 2 deletions

View File

@ -11,6 +11,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{86E1ADA2-631C-484F-906C-2D0BCF628E65}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
NuGet.config = NuGet.config
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestServer", "samples\TestServer\TestServer.csproj", "{4E5F5FCC-172C-44D9-BEA0-39098A79CD0B}"

View File

@ -1,5 +1,6 @@
{
"dependencies": {
"Microsoft.AspNetCore.AspNetCoreModule": "1.0.0-*",
"Microsoft.AspNetCore.Diagnostics": "1.2.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*",

View File

@ -100,7 +100,9 @@ namespace Microsoft.AspNetCore.WebSockets.ConformanceTest.Autobahn
ApplicationBaseUriHint = baseUrl,
ApplicationType = ApplicationType.Portable,
TargetFramework = "netcoreapp1.1",
EnvironmentName = environment
EnvironmentName = environment,
SiteName = "HttpTestSite", // This is configured in the Http.config
ServerConfigTemplateContent = (server == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
};
var deployer = ApplicationDeployerFactory.Create(parameters, logger);

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Server.IntegrationTesting": "0.2.0-*",
"Microsoft.AspNetCore.Server.IntegrationTesting": "0.3.0-*",
"Microsoft.AspNetCore.Testing": "1.2.0-*",
"Microsoft.Extensions.Logging": "1.2.0-*",
"Microsoft.Extensions.Logging.Console": "1.2.0-*",