From 05b8745172479d4c96694025583e34aa3f267298 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 19 Nov 2018 22:25:43 -0800 Subject: [PATCH] Remove aspnet/Hosting submodule and update targets and projects --- .gitmodules | 4 -- Directory.Build.props | 2 + build/artifacts.props | 2 - build/buildorder.props | 1 - build/dependencies.props | 10 ++-- build/external-dependencies.props | 2 + build/repo.props | 3 +- build/submodules.props | 1 - eng/Baseline.props | 55 +++++++++++++++++++ eng/Dependencies.props | 10 ++++ eng/ProjectReferences.props | 6 ++ eng/dependencies.temp.props | 6 +- eng/tools/BaselineGenerator/baseline.xml | 5 ++ modules/Hosting | 1 - ...spNetCore.Server.IntegrationTesting.csproj | 1 + .../src/Microsoft.AspNetCore.TestHost.csproj | 4 +- 16 files changed, 91 insertions(+), 22 deletions(-) delete mode 160000 modules/Hosting diff --git a/.gitmodules b/.gitmodules index 542c33301e..3883c59f83 100644 --- a/.gitmodules +++ b/.gitmodules @@ -26,10 +26,6 @@ path = modules/EntityFrameworkCore url = https://github.com/aspnet/EntityFrameworkCore.git branch = release/2.1 -[submodule "modules/Hosting"] - path = modules/Hosting - url = https://github.com/aspnet/Hosting.git - branch = release/2.1 [submodule "modules/HttpSysServer"] path = modules/HttpSysServer url = https://github.com/aspnet/HttpSysServer.git diff --git a/Directory.Build.props b/Directory.Build.props index 99d625f1ad..1999dba76d 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -31,6 +31,8 @@ false true + $(MSBuildThisFileDirectory)src\Shared\ + true diff --git a/build/artifacts.props b/build/artifacts.props index 717198331b..804b60bc86 100644 --- a/build/artifacts.props +++ b/build/artifacts.props @@ -183,8 +183,6 @@ - - diff --git a/build/buildorder.props b/build/buildorder.props index ca4766001a..311b21a233 100644 --- a/build/buildorder.props +++ b/build/buildorder.props @@ -8,7 +8,6 @@ - diff --git a/build/dependencies.props b/build/dependencies.props index b46e6e7a6c..f888bcdde1 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -44,13 +44,13 @@ 2.1.1 2.1.1 2.1.1 + 2.1.1 2.1.1 2.1.1 - 2.1.1 2.1.1 2.1.1 - 2.1.1 2.1.1 + 2.1.1 2.1.0 2.1.1 2.1.1 @@ -58,6 +58,8 @@ 2.1.1 2.1.1 2.1.1 + 2.1.1 + 2.1.1 2.1.1 2.1.1 2.1.1 @@ -66,9 +68,9 @@ 2.1.1 2.1.1 2.1.1 + 2.1.1 2.1.1 2.1.1 - 2.1.1 2.1.1 2.1.6 2.1.1 @@ -83,8 +85,8 @@ 2.1.1 2.1.1 2.1.1 - 2.1.1 2.1.1 + 2.1.1 2.1.1 diff --git a/build/external-dependencies.props b/build/external-dependencies.props index 32846302dd..0a38ed292e 100644 --- a/build/external-dependencies.props +++ b/build/external-dependencies.props @@ -58,6 +58,8 @@ + + diff --git a/build/repo.props b/build/repo.props index 0ff0b46f3d..a1b4241fbb 100644 --- a/build/repo.props +++ b/build/repo.props @@ -42,7 +42,7 @@ - + @@ -55,6 +55,7 @@ - diff --git a/eng/Baseline.props b/eng/Baseline.props index 75cf832c10..9d9a2241b2 100644 --- a/eng/Baseline.props +++ b/eng/Baseline.props @@ -126,6 +126,53 @@ + + + 2.1.1 + + + + + + + + + 2.1.1 + + + + + + + + 2.1.1 + + + + + + + + + + + 2.1.1 + + + + + + + + + + + + + + + + 2.1.1 @@ -270,6 +317,14 @@ + + + 2.1.1 + + + + + 2.1.1 diff --git a/eng/Dependencies.props b/eng/Dependencies.props index 994311c8c7..0ad0e06111 100644 --- a/eng/Dependencies.props +++ b/eng/Dependencies.props @@ -18,17 +18,25 @@ + + + + + + + + @@ -45,6 +53,8 @@ + + diff --git a/eng/ProjectReferences.props b/eng/ProjectReferences.props index 9398f0a906..0e25409b66 100644 --- a/eng/ProjectReferences.props +++ b/eng/ProjectReferences.props @@ -11,6 +11,12 @@ + + + + + + diff --git a/eng/dependencies.temp.props b/eng/dependencies.temp.props index a96067429f..f319c9348c 100644 --- a/eng/dependencies.temp.props +++ b/eng/dependencies.temp.props @@ -1,5 +1,5 @@ @@ -7,9 +7,5 @@ This is required to provide dependencies for samples and tests. - - - - diff --git a/eng/tools/BaselineGenerator/baseline.xml b/eng/tools/BaselineGenerator/baseline.xml index 6698ce0c92..5a3e9661b9 100644 --- a/eng/tools/BaselineGenerator/baseline.xml +++ b/eng/tools/BaselineGenerator/baseline.xml @@ -15,6 +15,10 @@ + + + + @@ -28,6 +32,7 @@ + diff --git a/modules/Hosting b/modules/Hosting deleted file mode 160000 index 3f7ee338d4..0000000000 --- a/modules/Hosting +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3f7ee338d4cdd1c49bb965338ad7b118fa070a83 diff --git a/src/Hosting/Server.IntegrationTesting/src/Microsoft.AspNetCore.Server.IntegrationTesting.csproj b/src/Hosting/Server.IntegrationTesting/src/Microsoft.AspNetCore.Server.IntegrationTesting.csproj index 59e2f49cdc..cef4aad56d 100644 --- a/src/Hosting/Server.IntegrationTesting/src/Microsoft.AspNetCore.Server.IntegrationTesting.csproj +++ b/src/Hosting/Server.IntegrationTesting/src/Microsoft.AspNetCore.Server.IntegrationTesting.csproj @@ -11,6 +11,7 @@ true aspnetcore;testing false + true diff --git a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj index 6b00e0767d..acb65b2006 100644 --- a/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj +++ b/src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj @@ -9,9 +9,7 @@ - - - +