Skip to content

Commit

Permalink
Updated test project to support .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Dec 23, 2023
1 parent b2f925b commit 40a0274
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.1;net6.0;net7.0;</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netcoreapp2.1;net6.0;net7.0;net472;</TargetFrameworks>
<TargetFrameworks Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">netcoreapp2.1;net6.0;net7.0;</TargetFrameworks>
<TargetFrameworks Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">net6.0;net7.0;</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;net6.0;net7.0;;net8.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netcoreapp2.1;net6.0;net7.0;net8.0;net472;</TargetFrameworks>
<TargetFrameworks Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">netcoreapp2.1;net6.0;net7.0;net8.0;</TargetFrameworks>
<TargetFrameworks Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">net6.0;net7.0;net8.0;</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down

0 comments on commit 40a0274

Please sign in to comment.