Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Half #362

Merged
merged 15 commits into from
May 21, 2021
Prev Previous commit
Next Next commit
Update Verify.Tests.csproj
  • Loading branch information
SimonCropp committed May 20, 2021
commit ca9c94301289e7f196154fb8c099c89cc3410d03
4 changes: 2 additions & 2 deletions src/Verify.Tests/Verify.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6</TargetFrameworks>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<NoWarn>$(NoWarn);CS8002</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>net48;net5.0</TargetFrameworks>
<TargetFrameworks>net48;net5.0;net6</TargetFrameworks>
</PropertyGroup>
<ItemGroup Condition=" '$(OS)' != 'Windows_NT' ">
<Compile Remove="Converters\TypeConverterTests.cs" />
Expand Down