Skip to content

Commit 356147f

Browse files
authored
Revert "Move tests to target .NET 7"
1 parent 3168c39 commit 356147f

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

src/Microsoft.CodeAnalysis.Analyzers/UnitTests/Microsoft.CodeAnalysis.Analyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
</PropertyGroup>
77
<ItemGroup>

src/Microsoft.CodeAnalysis.BannedApiAnalyzers/UnitTests/Microsoft.CodeAnalysis.BannedApiAnalyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
</PropertyGroup>
77
<ItemGroup>

src/Microsoft.CodeAnalysis.ResxSourceGenerator/Microsoft.CodeAnalysis.ResxSourceGenerator.UnitTests/Microsoft.CodeAnalysis.ResxSourceGenerator.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
77
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>

src/NetAnalyzers/UnitTests/Microsoft.CodeAnalysis.NetAnalyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<DefineConstants>$(DefineConstants),NET_ANALYZERS_TEST</DefineConstants>
66
<ServerGarbageCollection>true</ServerGarbageCollection>
77
</PropertyGroup>

src/PerformanceSensitiveAnalyzers/UnitTests/Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
<NoWarn>$(NoWarn);xUnit1000;CA1812</NoWarn>
77

src/PublicApiAnalyzers/UnitTests/Microsoft.CodeAnalysis.PublicApiAnalyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
</PropertyGroup>
77
<ItemGroup>

src/Roslyn.Diagnostics.Analyzers/UnitTests/Roslyn.Diagnostics.Analyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
</PropertyGroup>
77
<ItemGroup>

src/Test.Utilities/Test.Utilities.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<NonShipping>true</NonShipping>
66
<IsShipping>false</IsShipping>
77
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>

src/Text.Analyzers/UnitTests/Text.Analyzers.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
</PropertyGroup>
77
<ItemGroup>

src/Tools/RulesetToEditorconfigConverter/Tests/RulesetToEditorconfigConverter.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
<IsShipping>false</IsShipping>
77
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>

src/Utilities.UnitTests/Analyzer.Utilities.UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
55
<ServerGarbageCollection>true</ServerGarbageCollection>
66
<NonShipping>true</NonShipping>
77
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>

src/Utilities/Compiler/Lightup/IFunctionPointerInvocationOperationWrapper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private static Func<IOperation, IMethodSymbol> CreateFunctionPointerSignatureAcc
3939

4040
var operation = Expression.Variable(typeof(IOperation));
4141

42-
return Expression.Lambda<Func<IOperation, IMethodSymbol>>(Expression.Call(targetMethod, Expression.Convert(operation, wrappedType)), operation).Compile();
42+
return Expression.Lambda<Func<IOperation, IMethodSymbol>>(Expression.Call(targetMethod, Expression.Convert(operation, WrappedType)), operation).Compile();
4343
}
4444

4545
private IFunctionPointerInvocationOperationWrapper(IOperation operation)

src/Utilities/Compiler/Lightup/LightupHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private static Func<T, TProperty> CreatePropertyAccessor<T, TProperty>(Type? typ
6666
? parameter
6767
: Expression.Convert(parameter, type);
6868

69-
Expression result = Expression.Call(instance, property.GetMethod!);
69+
Expression result = Expression.Call(instance, property.GetMethod);
7070
if (!typeof(TProperty).GetTypeInfo().IsAssignableFrom(property.PropertyType.GetTypeInfo()))
7171
{
7272
result = Expression.Convert(result, typeof(TProperty));

src/Utilities/Compiler/RulesetToEditorconfigConverter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static XElement GetTopLevelRulesetNode(string rulesetFilePath)
9696
var ruleSetDocument = XDocument.Load(xmlReader);
9797

9898
// Find the top level rule set node
99-
var rulesetNode = ruleSetDocument.Elements(RuleSetNodeName).First();
99+
var rulesetNode = ruleSetDocument.Elements(RuleSetNodeName).FirstOrDefault();
100100
Debug.Assert(rulesetNode.Name == RuleSetNodeName);
101101
return rulesetNode;
102102
}
@@ -143,7 +143,7 @@ static void PopulateRuleIdToComments(string rulesetFilePath, Dictionary<string,
143143
if (node is XElement ruleNode &&
144144
ruleNode.Name == RuleNodeName)
145145
{
146-
XAttribute? ruleId = ruleNode.Attribute(RuleIdAttributeName);
146+
XAttribute ruleId = ruleNode.Attribute(RuleIdAttributeName);
147147
if (ruleId != null)
148148
{
149149
foreach (var comment in ruleNode.Nodes().OfType<XComment>())

0 commit comments

Comments
 (0)