Skip to content

Commit 6351f9f

Browse files
Add support for .net 6.0. Fix for #122 (#123)
Co-authored-by: Ivan Duman <webhelpadmin@gmail.com>
1 parent a459c05 commit 6351f9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/FluentAssertions.Analyzers.Tests/FluentAssertions.Analyzers.Tests.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>net6</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj

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

33
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
4-
<TargetFrameworks>netstandard2.0;netstandard2.1;net48;net6</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net48;net6.0</TargetFrameworks>
55
</PropertyGroup>
66
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
7-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6</TargetFrameworks>
7+
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
88
</PropertyGroup>
99

1010
<PropertyGroup>

0 commit comments

Comments
 (0)