From f0684581bc349c9513639baf5e4962ade2fc9be3 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Mon, 24 Jan 2022 09:40:57 -0800 Subject: [PATCH 1/6] Remove netstandard1.3 from code base The remote debugger components moved to their minimum framework install to 4.6.2 where it was previously 2.0. That means we can remove the uses of `netstandard1.3` in our code base as they existed just to support this specific case. This means we can also remove our use of `net2.0` in the code base and replace it with `net462`. That is a more involved changed though and going to take that a piece at a time. Removing `netstandard1.3` is an important step because presently it's blocking us from updating to the latest System.Collections.Immutable as it dropped support for `netstandard1.3` --- eng/test-rebuild.ps1 | 4 ++-- .../Core/Portable/CaseInsensitiveComparison.cs | 8 ++++---- .../Core/Portable/InternalUtilities/FailFast.cs | 6 +----- .../Core/Portable/InternalUtilities/FatalError.cs | 2 +- src/Compilers/Test/Core/Generated.targets | 4 ++-- ...Microsoft.CodeAnalysis.Debugging.Package.csproj | 2 +- ...osoft.CodeAnalysis.PooledObjects.Package.csproj | 2 +- ...osoft.CodeAnalysis.CSharp.ResultProvider.csproj | 3 +-- .../Microsoft.CodeAnalysis.FunctionResolver.csproj | 3 +-- .../Microsoft.CodeAnalysis.ResultProvider.csproj | 4 ++-- .../Package/ExpressionEvaluatorPackage.csproj | 2 +- ....CodeAnalysis.VisualBasic.ResultProvider.vbproj | 3 +-- .../VS.ExternalAPIs.Roslyn.Package.csproj | 14 +++++++------- 13 files changed, 25 insertions(+), 32 deletions(-) diff --git a/eng/test-rebuild.ps1 b/eng/test-rebuild.ps1 index 1f7ca77abbb06..eaba2a641ae3d 100644 --- a/eng/test-rebuild.ps1 +++ b/eng/test-rebuild.ps1 @@ -57,9 +57,9 @@ try { " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Collections.Package.dll" + " --exclude netstandard2.0\Microsoft.CodeAnalysis.Collections.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.Debugging.Package.dll" + - " --exclude netstandard1.3\Microsoft.CodeAnalysis.Debugging.Package.dll" + + " --exclude netstandard2.0\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + - " --exclude netstandard1.3\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + + " --exclude netstandard2.0\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.UnitTests.dll" + " --exclude net472\Zip\tools\vsixexpinstaller\System.ValueTuple.dll" + " --exclude net472\Zip\tools\vsixexpinstaller\VSIXExpInstaller.exe" + diff --git a/src/Compilers/Core/Portable/CaseInsensitiveComparison.cs b/src/Compilers/Core/Portable/CaseInsensitiveComparison.cs index 937429ff7b6b1..865c51408aaf7 100644 --- a/src/Compilers/Core/Portable/CaseInsensitiveComparison.cs +++ b/src/Compilers/Core/Portable/CaseInsensitiveComparison.cs @@ -117,7 +117,7 @@ public override int Compare(string? str1, string? str2) return str1.Length - str2.Length; } -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 public int Compare(ReadOnlySpan str1, ReadOnlySpan str2) { int len = Math.Min(str1.Length, str2.Length); @@ -168,7 +168,7 @@ public override bool Equals(string? str1, string? str2) return true; } -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 public bool Equals(ReadOnlySpan str1, ReadOnlySpan str2) { if (str1.Length != str2.Length) @@ -293,7 +293,7 @@ public override int GetHashCode(string str) /// public static bool Equals(string left, string right) => s_comparer.Equals(left, right); -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 /// /// Determines if two strings are equal according to Unicode rules for case-insensitive /// identifier comparison (lower-case mapping). @@ -335,7 +335,7 @@ public override int GetHashCode(string str) /// public static int Compare(string left, string right) => s_comparer.Compare(left, right); -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 /// /// Compares two strings according to the Unicode rules for case-insensitive /// identifier comparison (lower-case mapping). diff --git a/src/Compilers/Core/Portable/InternalUtilities/FailFast.cs b/src/Compilers/Core/Portable/InternalUtilities/FailFast.cs index 3260ed46f5beb..b53cf5cea8948 100644 --- a/src/Compilers/Core/Portable/InternalUtilities/FailFast.cs +++ b/src/Compilers/Core/Portable/InternalUtilities/FailFast.cs @@ -20,9 +20,7 @@ internal static class FailFast [DebuggerHidden] [DoesNotReturn] -#if !NETSTANDARD1_3 [MethodImpl(MethodImplOptions.Synchronized)] -#endif internal static void OnFatalException(Exception exception) { // EDMAURER Now using the managed API to fail fast so as to default @@ -49,9 +47,7 @@ internal static void OnFatalException(Exception exception) [DebuggerHidden] [DoesNotReturn] -#if !NETSTANDARD1_3 [MethodImpl(MethodImplOptions.Synchronized)] -#endif internal static void Fail(string message) { DumpStackTrace(message: message); @@ -82,7 +78,7 @@ internal static void DumpStackTrace(Exception? exception = null, string? message } } -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 Console.WriteLine("Stack trace of handler"); var stackTrace = new StackTrace(); Console.WriteLine(stackTrace.ToString()); diff --git a/src/Compilers/Core/Portable/InternalUtilities/FatalError.cs b/src/Compilers/Core/Portable/InternalUtilities/FatalError.cs index 5b5e814e7b3f2..16310c6ee8019 100644 --- a/src/Compilers/Core/Portable/InternalUtilities/FatalError.cs +++ b/src/Compilers/Core/Portable/InternalUtilities/FatalError.cs @@ -62,7 +62,7 @@ public static void OverwriteHandler(ErrorReporterHandler? value) // In the result provider, we aren't copying our handler to somewhere else, so we don't // need this method. It's too much of a challenge to shared code to work in // old versions of the runtime since APIs changed over time. -#if !NET20 && !NETSTANDARD1_3 +#if !NET20 /// /// Copies the handler in this instance to the linked copy of this type in this other assembly. diff --git a/src/Compilers/Test/Core/Generated.targets b/src/Compilers/Test/Core/Generated.targets index fc118bee81e21..a4c4ba82c7c49 100644 --- a/src/Compilers/Test/Core/Generated.targets +++ b/src/Compilers/Test/Core/Generated.targets @@ -156,8 +156,8 @@ netstandard10.microsoftcsharp.Microsoft.CSharp.dll Resources\ReferenceAssemblies\microsoftcsharp\Microsoft.CSharp.dll - - netstandard13lib.microsoftcsharp.Microsoft.CSharp.dll + + netstandard20lib.microsoftcsharp.Microsoft.CSharp.dll Resources\ReferenceAssemblies\microsoftcsharp\Microsoft.CSharp.dll diff --git a/src/Dependencies/CodeAnalysis.Debugging/Microsoft.CodeAnalysis.Debugging.Package.csproj b/src/Dependencies/CodeAnalysis.Debugging/Microsoft.CodeAnalysis.Debugging.Package.csproj index 660aac048254d..b0c4c72a55581 100644 --- a/src/Dependencies/CodeAnalysis.Debugging/Microsoft.CodeAnalysis.Debugging.Package.csproj +++ b/src/Dependencies/CodeAnalysis.Debugging/Microsoft.CodeAnalysis.Debugging.Package.csproj @@ -2,7 +2,7 @@ - netstandard1.3;net45 + netstandard2.0;net45 false none false diff --git a/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj b/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj index 6946a1bea1429..cef5b10dda4af 100644 --- a/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj +++ b/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj @@ -2,7 +2,7 @@ - netstandard1.3;net45 + netstandard2.0;net45 false none false diff --git a/src/ExpressionEvaluator/CSharp/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.CSharp.ResultProvider.csproj b/src/ExpressionEvaluator/CSharp/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.CSharp.ResultProvider.csproj index 230395a943404..b984824f83ed2 100644 --- a/src/ExpressionEvaluator/CSharp/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.CSharp.ResultProvider.csproj +++ b/src/ExpressionEvaluator/CSharp/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.CSharp.ResultProvider.csproj @@ -5,8 +5,7 @@ Library Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider - - netstandard1.3 + netstandard2.0 full diff --git a/src/ExpressionEvaluator/Core/Source/FunctionResolver/Microsoft.CodeAnalysis.FunctionResolver.csproj b/src/ExpressionEvaluator/Core/Source/FunctionResolver/Microsoft.CodeAnalysis.FunctionResolver.csproj index 72d0cac354d38..e1f9cf121dabc 100644 --- a/src/ExpressionEvaluator/Core/Source/FunctionResolver/Microsoft.CodeAnalysis.FunctionResolver.csproj +++ b/src/ExpressionEvaluator/Core/Source/FunctionResolver/Microsoft.CodeAnalysis.FunctionResolver.csproj @@ -6,8 +6,7 @@ Microsoft.CodeAnalysis.ExpressionEvaluator Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver true - - net45;netstandard1.3 + net45;netstandard2.0 diff --git a/src/ExpressionEvaluator/Core/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.ResultProvider.csproj b/src/ExpressionEvaluator/Core/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.ResultProvider.csproj index 12de7084e861c..740281bca5615 100644 --- a/src/ExpressionEvaluator/Core/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.ResultProvider.csproj +++ b/src/ExpressionEvaluator/Core/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.ResultProvider.csproj @@ -5,8 +5,7 @@ Library Microsoft.CodeAnalysis.ExpressionEvaluator Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider - - netstandard1.3 + netstandard2.0 full @@ -78,6 +77,7 @@ + \ No newline at end of file diff --git a/src/ExpressionEvaluator/Package/ExpressionEvaluatorPackage.csproj b/src/ExpressionEvaluator/Package/ExpressionEvaluatorPackage.csproj index fb28bdb6c0f7e..457732308ebdc 100644 --- a/src/ExpressionEvaluator/Package/ExpressionEvaluatorPackage.csproj +++ b/src/ExpressionEvaluator/Package/ExpressionEvaluatorPackage.csproj @@ -35,7 +35,7 @@ BuiltProjectOutputGroup%3bVsdConfigOutputGroup;SatelliteDllsProjectOutputGroup DebugSymbolsProjectOutputGroup true - TargetFramework=netstandard1.3 + TargetFramework=netstandard2.0 BindingRedirect diff --git a/src/ExpressionEvaluator/VisualBasic/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.VisualBasic.ResultProvider.vbproj b/src/ExpressionEvaluator/VisualBasic/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.VisualBasic.ResultProvider.vbproj index 6e5c1b8f8cba3..459fd83d79d62 100644 --- a/src/ExpressionEvaluator/VisualBasic/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.VisualBasic.ResultProvider.vbproj +++ b/src/ExpressionEvaluator/VisualBasic/Source/ResultProvider/Portable/Microsoft.CodeAnalysis.VisualBasic.ResultProvider.vbproj @@ -4,8 +4,7 @@ Library Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider - - netstandard1.3 + netstandard2.0 diff --git a/src/NuGet/VisualStudio/VS.ExternalAPIs.Roslyn.Package.csproj b/src/NuGet/VisualStudio/VS.ExternalAPIs.Roslyn.Package.csproj index cd1b782a9970f..a37588aae1c42 100644 --- a/src/NuGet/VisualStudio/VS.ExternalAPIs.Roslyn.Package.csproj +++ b/src/NuGet/VisualStudio/VS.ExternalAPIs.Roslyn.Package.csproj @@ -100,10 +100,10 @@ <_File Include="$(ArtifactsBinDir)Microsoft.VisualStudio.LanguageServices.Xaml\$(Configuration)\net472\Microsoft.VisualStudio.LanguageServices.Xaml.dll" TargetDir="" /> <_File Include="$(ArtifactsBinDir)Microsoft.VisualStudio.LanguageServices\$(Configuration)\net472\Microsoft.VisualStudio.LanguageServices.dll" TargetDir="" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.ResultProvider\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ResultProvider\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ResultProvider\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.FunctionResolver\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.dll" TargetDir="" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.ResultProvider\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ResultProvider\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ResultProvider\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.dll" TargetDir="" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.FunctionResolver\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.dll" TargetDir="" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ExpressionCompiler\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.dll" TargetDir="" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ExpressionCompiler\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.dll" TargetDir="" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.ExpressionCompiler\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.dll" TargetDir="" /> @@ -113,10 +113,10 @@ <_File Include="$(ArtifactsBinDir)ResultProvider.NetFX20\$(Configuration)\net20\Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.dll" TargetDir="RemoteDebugger\net20" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.FunctionResolver\$(Configuration)\net45\Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.dll" TargetDir="RemoteDebugger\net45" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ResultProvider\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ResultProvider\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ResultProvider.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.CSharp.ExpressionCompiler\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ResultProvider\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> - <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.FunctionResolver\$(Configuration)\netstandard1.3\Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ResultProvider\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ResultProvider.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> + <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.FunctionResolver\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> <_File Include="$(ArtifactsBinDir)Microsoft.CodeAnalysis.VisualBasic.ExpressionCompiler\$(Configuration)\netstandard2.0\Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.vsdconfig" TargetDir="LanguageServiceRegistration\ExpressionEvaluatorPackage" /> - netstandard2.0;net45 + netstandard1.3;net45 false none false diff --git a/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj b/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj index cef5b10dda4af..6946a1bea1429 100644 --- a/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj +++ b/src/Dependencies/PooledObjects/Microsoft.CodeAnalysis.PooledObjects.Package.csproj @@ -2,7 +2,7 @@ - netstandard2.0;net45 + netstandard1.3;net45 false none false From 27e549254bac3ad8c4e4712e5226d2ce4070de11 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Tue, 1 Feb 2022 10:11:42 -0800 Subject: [PATCH 4/6] Fix rebuild exclusion --- eng/test-rebuild.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/test-rebuild.ps1 b/eng/test-rebuild.ps1 index eaba2a641ae3d..979be55a82c8f 100644 --- a/eng/test-rebuild.ps1 +++ b/eng/test-rebuild.ps1 @@ -55,9 +55,9 @@ try { # Rebuilds with other issues " --exclude net472\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll" + " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Collections.Package.dll" + - " --exclude netstandard2.0\Microsoft.CodeAnalysis.Collections.Package.dll" + + " --exclude netstandard1.3\Microsoft.CodeAnalysis.Collections.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.Debugging.Package.dll" + - " --exclude netstandard2.0\Microsoft.CodeAnalysis.Debugging.Package.dll" + + " --exclude netstandard1.3\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + " --exclude netstandard2.0\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.UnitTests.dll" + From c8ff6514960d5318f0cceb6b5437062d12037e46 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Wed, 2 Feb 2022 14:07:54 -0800 Subject: [PATCH 5/6] test issues --- eng/test-rebuild.ps1 | 2 +- .../Microsoft.CodeAnalysis.Collections.Package.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/test-rebuild.ps1 b/eng/test-rebuild.ps1 index 979be55a82c8f..4200edebceaba 100644 --- a/eng/test-rebuild.ps1 +++ b/eng/test-rebuild.ps1 @@ -59,7 +59,7 @@ try { " --exclude net45\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude netstandard1.3\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + - " --exclude netstandard2.0\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + + " --exclude netstandard1.3\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.UnitTests.dll" + " --exclude net472\Zip\tools\vsixexpinstaller\System.ValueTuple.dll" + " --exclude net472\Zip\tools\vsixexpinstaller\VSIXExpInstaller.exe" + diff --git a/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj b/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj index 22cab2f5f0367..682898916f5bf 100644 --- a/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj +++ b/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj @@ -2,7 +2,7 @@ - netcoreapp3.1;netstandard2.0 + netcoreapp3.1;netstandard1.3 false none false From 7c5bbdf5517935bd6a3fbb9efdb5a86ce837e21c Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Wed, 2 Feb 2022 16:44:26 -0800 Subject: [PATCH 6/6] fix --- eng/test-rebuild.ps1 | 2 +- .../Microsoft.CodeAnalysis.Collections.Package.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/test-rebuild.ps1 b/eng/test-rebuild.ps1 index 4200edebceaba..1f7ca77abbb06 100644 --- a/eng/test-rebuild.ps1 +++ b/eng/test-rebuild.ps1 @@ -55,7 +55,7 @@ try { # Rebuilds with other issues " --exclude net472\Microsoft.CodeAnalysis.EditorFeatures2.UnitTests.dll" + " --exclude netcoreapp3.1\Microsoft.CodeAnalysis.Collections.Package.dll" + - " --exclude netstandard1.3\Microsoft.CodeAnalysis.Collections.Package.dll" + + " --exclude netstandard2.0\Microsoft.CodeAnalysis.Collections.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude netstandard1.3\Microsoft.CodeAnalysis.Debugging.Package.dll" + " --exclude net45\Microsoft.CodeAnalysis.PooledObjects.Package.dll" + diff --git a/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj b/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj index 682898916f5bf..22cab2f5f0367 100644 --- a/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj +++ b/src/Dependencies/Collections/Microsoft.CodeAnalysis.Collections.Package.csproj @@ -2,7 +2,7 @@ - netcoreapp3.1;netstandard1.3 + netcoreapp3.1;netstandard2.0 false none false