diff --git a/samples/LargeResponseApp/project.json b/samples/LargeResponseApp/project.json index 47f829ef1f..5988d499f6 100644 --- a/samples/LargeResponseApp/project.json +++ b/samples/LargeResponseApp/project.json @@ -18,7 +18,7 @@ "dnx451": {}, "netstandardapp1.5": { "dependencies": { - "NETStandard.Library": "1.0.0-*" + "NETStandard.Library": "1.5.0-*" }, "imports": [ "dnxcore50" diff --git a/samples/SampleApp/Startup.cs b/samples/SampleApp/Startup.cs index 54ef0b80ce..b7735816d6 100644 --- a/samples/SampleApp/Startup.cs +++ b/samples/SampleApp/Startup.cs @@ -24,9 +24,7 @@ namespace SampleApp loggerFactory.AddConsole(LogLevel.Trace); - var testCertPath = Path.Combine( - env.ApplicationBasePath, - @"../../test/Microsoft.AspNetCore.Server.KestrelTests/TestResources/testCert.pfx"); + var testCertPath = Path.Combine(env.ApplicationBasePath, "testCert.pfx"); if (File.Exists(testCertPath)) { diff --git a/samples/SampleApp/project.json b/samples/SampleApp/project.json index a561218cbb..86356d30af 100644 --- a/samples/SampleApp/project.json +++ b/samples/SampleApp/project.json @@ -20,7 +20,7 @@ "dnx451": {}, "netstandardapp1.5": { "dependencies": { - "NETStandard.Library": "1.0.0-*", + "NETStandard.Library": "1.5.0-*", "System.Console": "4.0.0-*" }, "imports": [ @@ -29,6 +29,7 @@ } }, "content": [ - "hosting.json" + "hosting.json", + "testCert.pfx" ] } \ No newline at end of file diff --git a/samples/SampleApp/testCert.pfx b/samples/SampleApp/testCert.pfx new file mode 100644 index 0000000000..7118908c2d Binary files /dev/null and b/samples/SampleApp/testCert.pfx differ