From 1c812d09d2451bc590e6b5609bf685ea19dceadc Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 1 Aug 2019 11:46:28 -0700 Subject: [PATCH 1/7] Remove workarounds --- eng/Workarounds.targets | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index f2162e9e86ff..52e1c7525c20 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -15,11 +15,6 @@ $(MicrosoftNETCorePlatformsPackageVersion) - - - - - - - - - - Microsoft.NETCore.App.Runtime.**RID** - - - - - From 75e26a2c34c53a276e8e6fc26f88233cd11c9d79 Mon Sep 17 00:00:00 2001 From: = Date: Thu, 1 Aug 2019 18:43:10 -0700 Subject: [PATCH 2/7] fb --- eng/Workarounds.targets | 7 ------- 1 file changed, 7 deletions(-) diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index 52e1c7525c20..215a638ca035 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -48,11 +48,4 @@ NETStandard.Library - - - - - - - From ea3844bb7ff4a554c91cd45def78bc1170e32110 Mon Sep 17 00:00:00 2001 From: = Date: Thu, 1 Aug 2019 18:46:54 -0700 Subject: [PATCH 3/7] Try removing site extensions workarounds --- src/SiteExtensions/build.cmd | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/SiteExtensions/build.cmd b/src/SiteExtensions/build.cmd index af51ba3dd68b..def485a1ce35 100644 --- a/src/SiteExtensions/build.cmd +++ b/src/SiteExtensions/build.cmd @@ -10,9 +10,8 @@ IF %ERRORLEVEL% NEQ 0 ( ) ECHO Building LoggingBranch -REM Remove /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true which workarounds dotnet store and publish behaviour changes in preview 6 -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* +CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* +CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* IF %ERRORLEVEL% NEQ 0 ( EXIT /b %ErrorLevel% From 6466990dcac852f1a78394ae106169580eed653a Mon Sep 17 00:00:00 2001 From: = Date: Thu, 1 Aug 2019 19:35:18 -0700 Subject: [PATCH 4/7] Maybe we still need it on windows --- eng/Workarounds.targets | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index 215a638ca035..52e1c7525c20 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -48,4 +48,11 @@ NETStandard.Library + + + + + + + From 1072fadd87a7c2fb27428013e94418cbe6ef2e41 Mon Sep 17 00:00:00 2001 From: = Date: Thu, 1 Aug 2019 19:42:41 -0700 Subject: [PATCH 5/7] One more workaround that shouldn't be needed --- eng/Workarounds.props | 5 +++++ eng/Workarounds.targets | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/eng/Workarounds.props b/eng/Workarounds.props index e2ad3d58a8c1..0fa6edaeab58 100644 --- a/eng/Workarounds.props +++ b/eng/Workarounds.props @@ -43,4 +43,9 @@ This one sets UseSharedCompilation to false by default. --> true + + + + false + diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index 52e1c7525c20..ed0324f74451 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -25,12 +25,6 @@ - - - - false - - From 63a8445b63c785e4d456c2dec3f0cc5ffb8b3bf9 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 2 Aug 2019 10:53:26 -0700 Subject: [PATCH 6/7] Wip --- eng/Workarounds.targets | 7 ------- src/SiteExtensions/build.cmd | 5 +++-- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index ed0324f74451..b64e4c614d72 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -42,11 +42,4 @@ NETStandard.Library - - - - - - - diff --git a/src/SiteExtensions/build.cmd b/src/SiteExtensions/build.cmd index def485a1ce35..af51ba3dd68b 100644 --- a/src/SiteExtensions/build.cmd +++ b/src/SiteExtensions/build.cmd @@ -10,8 +10,9 @@ IF %ERRORLEVEL% NEQ 0 ( ) ECHO Building LoggingBranch -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* +REM Remove /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true which workarounds dotnet store and publish behaviour changes in preview 6 +CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* +CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /p:DisablePackageAssetsCache=true /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* IF %ERRORLEVEL% NEQ 0 ( EXIT /b %ErrorLevel% From 893278cd16323df29761d38808bbed37421360e4 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 2 Aug 2019 17:17:01 -0700 Subject: [PATCH 7/7] wip --- eng/Workarounds.targets | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eng/Workarounds.targets b/eng/Workarounds.targets index b64e4c614d72..ed0324f74451 100644 --- a/eng/Workarounds.targets +++ b/eng/Workarounds.targets @@ -42,4 +42,11 @@ NETStandard.Library + + + + + + +