Skip to content

Commit 1b2ab0f

Browse files
authored
add support for net48 (#115)
* add support for net48 * build net48 only on windows
1 parent 46b6b8a commit 1b2ab0f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net48</TargetFrameworks>
5+
</PropertyGroup>
6+
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
7+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
8+
</PropertyGroup>
29

310
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
511
<RootNamespace>FluentAssertions.Analyzers</RootNamespace>
612
</PropertyGroup>
713

0 commit comments

Comments
 (0)