Skip to content

Commit

Permalink
add support for net48 (#115)
Browse files Browse the repository at this point in the history
* add support for net48

* build net48 only on windows
  • Loading branch information
Meir017 authored Oct 21, 2021
1 parent 46b6b8a commit 1b2ab0f
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;netstandard2.1;net48</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<RootNamespace>FluentAssertions.Analyzers</RootNamespace>
</PropertyGroup>

Expand Down

0 comments on commit 1b2ab0f

Please sign in to comment.