A few projects didn't use the project-wide variables for determining TFMs.
This commit is contained in:
parent
34ee4c4fff
commit
aab9a8b3a6
8 changed files with 97 additions and 42 deletions
|
@ -1,17 +1,16 @@
|
||||||
From 335f32e48fd5604cdb1340ec04d6503a3e43d783 Mon Sep 17 00:00:00 2001
|
From 198d70708016e5406e0d525567ca58962e222399 Mon Sep 17 00:00:00 2001
|
||||||
From: Michael Simons <msimons@microsoft.com>
|
From: Michael Simons <msimons@microsoft.com>
|
||||||
Date: Tue, 17 Aug 2021 21:09:35 +0000
|
Date: Tue, 17 Aug 2021 21:09:35 +0000
|
||||||
Subject: [PATCH] Don't use PublicApiAnalyzer on source-build
|
Subject: [PATCH 1/8] Don't use PublicApiAnalyzer on source-build
|
||||||
|
|
||||||
CSC : warning AD0001: Analyzer 'Microsoft.CodeAnalysis.PublicApiAnalyzers.DeclarePublicApiAnalyzer' threw an exception of type 'System.NullReferenceException' with message 'Object reference not set to an instance of an object.'.
|
CSC : warning AD0001: Analyzer 'Microsoft.CodeAnalysis.PublicApiAnalyzers.DeclarePublicApiAnalyzer' threw an exception of type 'System.NullReferenceException' with message 'Object reference not set to an instance of an object.'.
|
||||||
CSC : error CS2001: Source file '/repos/installer2/artifacts/tarball/src/nuget-client.7363366401b43f4ea250394db8dad3707e9a9636/src/NuGet.Core/NuGet.Common/PublicAPI/net6.0/PublicAPI.Shipped.txt' could not be found.
|
CSC : error CS2001: Source file '/repos/installer2/artifacts/tarball/src/nuget-client.7363366401b43f4ea250394db8dad3707e9a9636/src/NuGet.Core/NuGet.Common/PublicAPI/net6.0/PublicAPI.Shipped.txt' could not be found.
|
||||||
|
|
||||||
---
|
---
|
||||||
build/common.targets | 5 +++++
|
build/common.targets | 5 +++++
|
||||||
1 file changed, 5 insertions(+)
|
1 file changed, 5 insertions(+)
|
||||||
|
|
||||||
diff --git a/build/common.targets b/build/common.targets
|
diff --git a/build/common.targets b/build/common.targets
|
||||||
index 2c387f576..cf5a70c62 100644
|
index 7a353ebf8..6fd5bd260 100644
|
||||||
--- a/build/common.targets
|
--- a/build/common.targets
|
||||||
+++ b/build/common.targets
|
+++ b/build/common.targets
|
||||||
@@ -65,6 +65,11 @@
|
@@ -65,6 +65,11 @@
|
||||||
|
@ -27,5 +26,5 @@ index 2c387f576..cf5a70c62 100644
|
||||||
<PropertyGroup Condition=" '$(IsBuildOnlyXPLATProjects)' != 'true' and '$(PackProject)' == 'true' ">
|
<PropertyGroup Condition=" '$(IsBuildOnlyXPLATProjects)' != 'true' and '$(PackProject)' == 'true' ">
|
||||||
<UsePublicApiAnalyzer Condition=" '$(UsePublicApiAnalyzer)' == '' " >true</UsePublicApiAnalyzer>
|
<UsePublicApiAnalyzer Condition=" '$(UsePublicApiAnalyzer)' == '' " >true</UsePublicApiAnalyzer>
|
||||||
--
|
--
|
||||||
2.29.2
|
2.31.1
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
From e0e1d72dfa8881244a76c3dbcc63aa73c05546f4 Mon Sep 17 00:00:00 2001
|
From 98fd2091519fa4c6d9ab850eaea92700b00803dc Mon Sep 17 00:00:00 2001
|
||||||
From: Michael Simons <msimons@microsoft.com>
|
From: Michael Simons <msimons@microsoft.com>
|
||||||
Date: Tue, 17 Aug 2021 21:13:07 +0000
|
Date: Tue, 17 Aug 2021 21:13:07 +0000
|
||||||
Subject: [PATCH] Update netcoreapp TFMs to 6.0
|
Subject: [PATCH 2/8] Update netcoreapp TFMs to 6.0
|
||||||
|
|
||||||
---
|
---
|
||||||
build/common.project.props | 10 +++++-----
|
build/common.project.props | 10 +++++-----
|
||||||
build/common.targets | 2 +-
|
build/common.targets | 2 +-
|
||||||
2 files changed, 6 insertions(+), 6 deletions(-)
|
src/NuGet.Core/NuGet.Common/NuGet.Common.csproj | 1 -
|
||||||
|
.../NuGet.Configuration/NuGet.Configuration.csproj | 1 -
|
||||||
|
.../NuGet.Frameworks/NuGet.Frameworks.csproj | 1 -
|
||||||
|
.../NuGet.Versioning/NuGet.Versioning.csproj | 1 -
|
||||||
|
6 files changed, 6 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
diff --git a/build/common.project.props b/build/common.project.props
|
diff --git a/build/common.project.props b/build/common.project.props
|
||||||
index 80433ed60..8acc4e0bb 100644
|
index e2e3c0c11..000702f58 100644
|
||||||
--- a/build/common.project.props
|
--- a/build/common.project.props
|
||||||
+++ b/build/common.project.props
|
+++ b/build/common.project.props
|
||||||
@@ -13,17 +13,17 @@
|
@@ -13,17 +13,17 @@
|
||||||
|
@ -36,7 +40,7 @@ index 80433ed60..8acc4e0bb 100644
|
||||||
<RepositoryRootDirectory>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\</RepositoryRootDirectory>
|
<RepositoryRootDirectory>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'README.md'))\</RepositoryRootDirectory>
|
||||||
<BuildCommonDirectory>$(RepositoryRootDirectory)build\</BuildCommonDirectory>
|
<BuildCommonDirectory>$(RepositoryRootDirectory)build\</BuildCommonDirectory>
|
||||||
diff --git a/build/common.targets b/build/common.targets
|
diff --git a/build/common.targets b/build/common.targets
|
||||||
index cf5a70c62..8827686a7 100644
|
index 6fd5bd260..3de830b25 100644
|
||||||
--- a/build/common.targets
|
--- a/build/common.targets
|
||||||
+++ b/build/common.targets
|
+++ b/build/common.targets
|
||||||
@@ -6,7 +6,7 @@
|
@@ -6,7 +6,7 @@
|
||||||
|
@ -48,6 +52,54 @@ index cf5a70c62..8827686a7 100644
|
||||||
<DefineConstants>$(DefineConstants);IS_CORECLR</DefineConstants>
|
<DefineConstants>$(DefineConstants);IS_CORECLR</DefineConstants>
|
||||||
<IsCore>true</IsCore>
|
<IsCore>true</IsCore>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
diff --git a/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj b/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj
|
||||||
|
index e30a079eb..c2b8fe241 100644
|
||||||
|
--- a/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj
|
||||||
|
+++ b/src/NuGet.Core/NuGet.Common/NuGet.Common.csproj
|
||||||
|
@@ -5,7 +5,6 @@
|
||||||
|
<PropertyGroup>
|
||||||
|
<Description>Common utilities and interfaces for all NuGet libraries.</Description>
|
||||||
|
<TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
||||||
|
- <TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net45</TargetFrameworks>
|
||||||
|
<TargetFramework />
|
||||||
|
<NoWarn>$(NoWarn);CS1591;CS1574</NoWarn>
|
||||||
|
<PackProject>true</PackProject>
|
||||||
|
diff --git a/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj b/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj
|
||||||
|
index bbc5ba480..fc4d42502 100644
|
||||||
|
--- a/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj
|
||||||
|
+++ b/src/NuGet.Core/NuGet.Configuration/NuGet.Configuration.csproj
|
||||||
|
@@ -6,7 +6,6 @@
|
||||||
|
<Description>NuGet's configuration settings implementation.</Description>
|
||||||
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
||||||
|
<TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
||||||
|
- <TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net45</TargetFrameworks>
|
||||||
|
<TargetFramework />
|
||||||
|
<PackProject>true</PackProject>
|
||||||
|
<Shipping>true</Shipping>
|
||||||
|
diff --git a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
|
index 65f261dc1..f29551741 100644
|
||||||
|
--- a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
|
+++ b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
|
@@ -5,7 +5,6 @@
|
||||||
|
<PropertyGroup>
|
||||||
|
<Description>NuGet's understanding of target frameworks.</Description>
|
||||||
|
<TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
||||||
|
- <TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net40</TargetFrameworks>
|
||||||
|
<TargetFramework />
|
||||||
|
<NoWarn>$(NoWarn);CS1591;CS1574;CS1573</NoWarn>
|
||||||
|
<PackProject>true</PackProject>
|
||||||
|
diff --git a/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj b/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj
|
||||||
|
index 180293944..8498664b9 100644
|
||||||
|
--- a/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj
|
||||||
|
+++ b/src/NuGet.Core/NuGet.Versioning/NuGet.Versioning.csproj
|
||||||
|
@@ -4,7 +4,6 @@
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
||||||
|
- <TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net45</TargetFrameworks>
|
||||||
|
<TargetFramework />
|
||||||
|
<Description>NuGet's implementation of Semantic Versioning.</Description>
|
||||||
|
<PackageTags>semver;semantic versioning</PackageTags>
|
||||||
--
|
--
|
||||||
2.29.2
|
2.31.1
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From fecc40e502197e65804177b2aec49a7a5422ed6e Mon Sep 17 00:00:00 2001
|
From abf05bf4b06ab5d47372d166b7bb6c2c6bb4e6a2 Mon Sep 17 00:00:00 2001
|
||||||
From: Davis Goodin <dagood@microsoft.com>
|
From: Davis Goodin <dagood@microsoft.com>
|
||||||
Date: Thu, 10 Dec 2020 16:17:55 -0600
|
Date: Thu, 10 Dec 2020 16:17:55 -0600
|
||||||
Subject: [PATCH 3/5] Use source-built Microsoft.Web.Xdt &
|
Subject: [PATCH 3/8] Use source-built Microsoft.Web.Xdt &
|
||||||
System.ComponentModel.Composition
|
System.ComponentModel.Composition
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -9,7 +9,7 @@ Subject: [PATCH 3/5] Use source-built Microsoft.Web.Xdt &
|
||||||
1 file changed, 8 insertions(+), 2 deletions(-)
|
1 file changed, 8 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/build/packages.targets b/build/packages.targets
|
diff --git a/build/packages.targets b/build/packages.targets
|
||||||
index 6f72ac3fd..8317f3903 100644
|
index 614a0ca68..ab0064b66 100644
|
||||||
--- a/build/packages.targets
|
--- a/build/packages.targets
|
||||||
+++ b/build/packages.targets
|
+++ b/build/packages.targets
|
||||||
@@ -15,6 +15,12 @@
|
@@ -15,6 +15,12 @@
|
||||||
|
@ -39,5 +39,5 @@ index 6f72ac3fd..8317f3903 100644
|
||||||
The Microsoft.VisualStudio.SDK metapackage brings in System.Threading.Tasks.Dataflow 4.11.1 (assembly version 4.9.5.0).
|
The Microsoft.VisualStudio.SDK metapackage brings in System.Threading.Tasks.Dataflow 4.11.1 (assembly version 4.9.5.0).
|
||||||
However, our MSBuild integration tests use Microsoft.Build 16.8.0, which requires System.Threading.Tasks.Dataflow 4.9.0 (assembly version 4.9.3.0).
|
However, our MSBuild integration tests use Microsoft.Build 16.8.0, which requires System.Threading.Tasks.Dataflow 4.9.0 (assembly version 4.9.3.0).
|
||||||
--
|
--
|
||||||
2.18.0
|
2.31.1
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From 9e35a4d319f3288a50bdaf5b32661764761aa0e9 Mon Sep 17 00:00:00 2001
|
From c77a8c754381600ec891c5601b2c5cd9c8945d26 Mon Sep 17 00:00:00 2001
|
||||||
From: Chris Rummel <crummel@microsoft.com>
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
Date: Thu, 19 Aug 2021 10:59:36 -0500
|
Date: Thu, 19 Aug 2021 10:59:36 -0500
|
||||||
Subject: [PATCH 4/5] Build script changes to support ArPow from tarball.
|
Subject: [PATCH 4/8] Build script changes to support ArPow from tarball.
|
||||||
|
|
||||||
---
|
---
|
||||||
eng/source-build/build.sh | 27 +++++++++++++++++++++++++--
|
eng/source-build/build.sh | 27 +++++++++++++++++++++++++--
|
||||||
|
@ -9,7 +9,7 @@ Subject: [PATCH 4/5] Build script changes to support ArPow from tarball.
|
||||||
2 files changed, 29 insertions(+), 4 deletions(-)
|
2 files changed, 29 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
diff --git a/eng/source-build/build.sh b/eng/source-build/build.sh
|
diff --git a/eng/source-build/build.sh b/eng/source-build/build.sh
|
||||||
index 3bb69b2b0..aaff8ef0f 100755
|
index 3bb69b2b0..ee1221d56 100755
|
||||||
--- a/eng/source-build/build.sh
|
--- a/eng/source-build/build.sh
|
||||||
+++ b/eng/source-build/build.sh
|
+++ b/eng/source-build/build.sh
|
||||||
@@ -13,6 +13,25 @@ while [[ -h $source ]]; do
|
@@ -13,6 +13,25 @@ while [[ -h $source ]]; do
|
||||||
|
@ -54,7 +54,7 @@ index 3bb69b2b0..aaff8ef0f 100755
|
||||||
-"$DOTNET" msbuild "$scriptroot/source-build.proj" /p:DotNetBuildFromSource=true /p:ArcadeBuildFromSource=true "/p:RepoRoot=$scriptroot/../../" "/bl:$scriptroot/../../artifacts/source-build/self/log/source-build.binlog"
|
-"$DOTNET" msbuild "$scriptroot/source-build.proj" /p:DotNetBuildFromSource=true /p:ArcadeBuildFromSource=true "/p:RepoRoot=$scriptroot/../../" "/bl:$scriptroot/../../artifacts/source-build/self/log/source-build.binlog"
|
||||||
+"$DOTNET" msbuild "$scriptroot/source-build.proj" /p:Configuration=$configuration /p:DotNetBuildFromSource=true /p:ArcadeBuildFromSource=true "/p:RepoRoot=$scriptroot/../../" "/bl:$scriptroot/../../artifacts/source-build/self/log/source-build.binlog" $args
|
+"$DOTNET" msbuild "$scriptroot/source-build.proj" /p:Configuration=$configuration /p:DotNetBuildFromSource=true /p:ArcadeBuildFromSource=true "/p:RepoRoot=$scriptroot/../../" "/bl:$scriptroot/../../artifacts/source-build/self/log/source-build.binlog" $args
|
||||||
diff --git a/eng/source-build/source-build.proj b/eng/source-build/source-build.proj
|
diff --git a/eng/source-build/source-build.proj b/eng/source-build/source-build.proj
|
||||||
index 6f90f9793..91ea2d032 100644
|
index 72058ac88..cbdd6d819 100644
|
||||||
--- a/eng/source-build/source-build.proj
|
--- a/eng/source-build/source-build.proj
|
||||||
+++ b/eng/source-build/source-build.proj
|
+++ b/eng/source-build/source-build.proj
|
||||||
@@ -4,6 +4,8 @@
|
@@ -4,6 +4,8 @@
|
||||||
|
@ -84,5 +84,5 @@ index 6f90f9793..91ea2d032 100644
|
||||||
/>
|
/>
|
||||||
|
|
||||||
--
|
--
|
||||||
2.18.0
|
2.31.1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From d3c633ad00408b2b6122b70d9a152d1ab79c8378 Mon Sep 17 00:00:00 2001
|
From 2df1980c2c657c364bf86f35830396f9d1b6e5c9 Mon Sep 17 00:00:00 2001
|
||||||
From: Chris Rummel <crummel@microsoft.com>
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
Date: Thu, 19 Aug 2021 11:01:04 -0500
|
Date: Thu, 19 Aug 2021 11:01:04 -0500
|
||||||
Subject: [PATCH 2/2] Upgrade to .NET 6 SDK.
|
Subject: [PATCH 5/8] Upgrade to .NET 6 SDK.
|
||||||
|
|
||||||
---
|
---
|
||||||
.../NuGet.Commands/SignCommand/CertificateProvider.cs | 4 ++--
|
.../NuGet.Commands/SignCommand/CertificateProvider.cs | 4 ++--
|
||||||
|
@ -94,10 +94,10 @@ index 7c9595268..1ca751850 100644
|
||||||
#else
|
#else
|
||||||
object result;
|
object result;
|
||||||
diff --git a/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs b/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
diff --git a/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs b/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
||||||
index 67a1726b6..0534e936e 100644
|
index c7bcb54bb..30d86fcc9 100644
|
||||||
--- a/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
--- a/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
||||||
+++ b/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
+++ b/src/NuGet.Core/NuGet.Protocol/HttpSource/HttpRetryHandler.cs
|
||||||
@@ -81,7 +81,7 @@ public class HttpRetryHandler : IHttpRetryHandler
|
@@ -113,7 +113,7 @@ internal HttpRetryHandler(IEnvironmentVariableReader environmentVariableReader)
|
||||||
headerStopwatch = new Stopwatch();
|
headerStopwatch = new Stopwatch();
|
||||||
stopwatches.Add(headerStopwatch);
|
stopwatches.Add(headerStopwatch);
|
||||||
}
|
}
|
||||||
|
@ -120,5 +120,5 @@ index b9ab58ce7..ebf738e52 100644
|
||||||
new HttpRequestOptionsKey<List<Stopwatch>>(HttpRetryHandler.StopwatchPropertyName),
|
new HttpRequestOptionsKey<List<Stopwatch>>(HttpRetryHandler.StopwatchPropertyName),
|
||||||
out stopwatches))
|
out stopwatches))
|
||||||
--
|
--
|
||||||
2.18.0
|
2.31.1
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
From 612f18bace3320572dc69b3ee56c0d942c29331f Mon Sep 17 00:00:00 2001
|
From 5f983c2b8c038e86096be2d518ce49208a5fd430 Mon Sep 17 00:00:00 2001
|
||||||
From: Chris Rummel <crummel@microsoft.com>
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
Date: Fri, 20 Aug 2021 15:30:52 -0500
|
Date: Fri, 20 Aug 2021 15:30:52 -0500
|
||||||
Subject: [PATCH] Build NuGet.Frameworks for netstandard as well for VSTest.
|
Subject: [PATCH 6/8] Build NuGet.Frameworks for netstandard as well for
|
||||||
|
VSTest.
|
||||||
|
|
||||||
---
|
---
|
||||||
src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj | 2 +-
|
src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj | 2 +-
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
diff --git a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
index 65f261dc1..ed81ecf24 100644
|
index f29551741..a89b516c6 100644
|
||||||
--- a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
--- a/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
+++ b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
+++ b/src/NuGet.Core/NuGet.Frameworks/NuGet.Frameworks.csproj
|
||||||
@@ -4,7 +4,7 @@
|
@@ -4,7 +4,7 @@
|
||||||
|
@ -17,9 +18,9 @@ index 65f261dc1..ed81ecf24 100644
|
||||||
<Description>NuGet's understanding of target frameworks.</Description>
|
<Description>NuGet's understanding of target frameworks.</Description>
|
||||||
- <TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
- <TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks>
|
||||||
+ <TargetFrameworks>$(TargetFrameworksLibrary);netstandard2.0</TargetFrameworks>
|
+ <TargetFrameworks>$(TargetFrameworksLibrary);netstandard2.0</TargetFrameworks>
|
||||||
<TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net40</TargetFrameworks>
|
|
||||||
<TargetFramework />
|
<TargetFramework />
|
||||||
<NoWarn>$(NoWarn);CS1591;CS1574;CS1573</NoWarn>
|
<NoWarn>$(NoWarn);CS1591;CS1574;CS1573</NoWarn>
|
||||||
|
<PackProject>true</PackProject>
|
||||||
--
|
--
|
||||||
2.18.0
|
2.31.1
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
From d0596ee04233142bbaa9b3587f2c8b3a0bd82f8f Mon Sep 17 00:00:00 2001
|
From f5d3b8b8c189df9bf1644a9e26b3c6b57e353e84 Mon Sep 17 00:00:00 2001
|
||||||
From: Michael Simons <msimons@microsoft.com>
|
From: Michael Simons <msimons@microsoft.com>
|
||||||
Date: Fri, 27 Aug 2021 01:52:56 +0000
|
Date: Fri, 27 Aug 2021 01:52:56 +0000
|
||||||
Subject: [PATCH] NuGet.Build.Tasks.Pack source-build support
|
Subject: [PATCH 7/8] NuGet.Build.Tasks.Pack source-build support
|
||||||
|
|
||||||
---
|
---
|
||||||
.../NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj | 9 ++++++---
|
.../NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj | 7 +++++--
|
||||||
1 file changed, 6 insertions(+), 3 deletions(-)
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj b/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
diff --git a/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj b/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
||||||
index f11dd752b..c7425dbe8 100644
|
index f11dd752b..1be4f8952 100644
|
||||||
--- a/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
--- a/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
||||||
+++ b/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
+++ b/src/NuGet.Core/NuGet.Build.Tasks.Pack/NuGet.Build.Tasks.Pack.csproj
|
||||||
@@ -180,13 +180,16 @@
|
@@ -180,13 +180,16 @@
|
||||||
|
@ -31,5 +31,5 @@ index f11dd752b..c7425dbe8 100644
|
||||||
|
|
||||||
<Import Project="$(BuildCommonDirectory)common.targets"/>
|
<Import Project="$(BuildCommonDirectory)common.targets"/>
|
||||||
--
|
--
|
||||||
2.29.2
|
2.31.1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 4af707e198a2531f45ae56566cb49fd796070c59 Mon Sep 17 00:00:00 2001
|
||||||
From: Chris Rummel <crummel@microsoft.com>
|
From: Chris Rummel <crummel@microsoft.com>
|
||||||
Date: Wed, 21 Jul 2021 17:33:03 -0500
|
Date: Wed, 21 Jul 2021 17:33:03 -0500
|
||||||
Subject: [PATCH] Update Microsoft.Extensions.CommandLineUtils reference
|
Subject: [PATCH 8/8] Update Microsoft.Extensions.CommandLineUtils reference
|
||||||
|
|
||||||
Microsoft.Extensions.CommandLineUtils is obsolete and no longer being built. Because of this it can't be source-built.
|
Microsoft.Extensions.CommandLineUtils is obsolete and no longer being built. Because of this it can't be source-built.
|
||||||
Microsoft.Extensions.CommandLineUtils.Sources is handled as a text-only SBRP.
|
Microsoft.Extensions.CommandLineUtils.Sources is handled as a text-only SBRP.
|
||||||
|
@ -11,7 +11,7 @@ Microsoft.Extensions.CommandLineUtils.Sources is handled as a text-only SBRP.
|
||||||
2 files changed, 3 insertions(+), 2 deletions(-)
|
2 files changed, 3 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/build/packages.targets b/build/packages.targets
|
diff --git a/build/packages.targets b/build/packages.targets
|
||||||
index 614a0ca68..f6be9619e 100644
|
index ab0064b66..534f26ae3 100644
|
||||||
--- a/build/packages.targets
|
--- a/build/packages.targets
|
||||||
+++ b/build/packages.targets
|
+++ b/build/packages.targets
|
||||||
@@ -8,6 +8,7 @@
|
@@ -8,6 +8,7 @@
|
||||||
|
@ -22,7 +22,7 @@ index 614a0ca68..f6be9619e 100644
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- Test and package versions -->
|
<!-- Test and package versions -->
|
||||||
@@ -31,7 +32,7 @@
|
@@ -37,7 +38,7 @@
|
||||||
<PackageReference Update="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
|
<PackageReference Update="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
|
||||||
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" />
|
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" />
|
||||||
<PackageReference Update="Microsoft.DataAI.NuGetRecommender.Contracts" Version="2.1.0" />
|
<PackageReference Update="Microsoft.DataAI.NuGetRecommender.Contracts" Version="2.1.0" />
|
||||||
|
@ -44,3 +44,6 @@ index 21015c00a..e306cdee4 100644
|
||||||
<PackageReference Include="System.Diagnostics.Debug" />
|
<PackageReference Include="System.Diagnostics.Debug" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
--
|
||||||
|
2.31.1
|
||||||
|
|
Loading…
Reference in a new issue