Skip to content

Commit

Permalink
Don't test .NET Core 3.1 on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Jan 18, 2025
1 parent c9b2e91 commit eec8862
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<!-- .NET Core 3.1 won't run easily in github actions (due to missing libssl) so limit it to Windows-->
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">netcoreapp3.1;$(TargetFrameworks)</TargetFrameworks>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

<PropertyGroup>
<Authors>Andrew Lock</Authors>
<TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<!-- .NET Core 3.1 won't run easily in github actions (due to missing libssl) so limit it to Windows-->
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">netcoreapp3.1;$(TargetFrameworks)</TargetFrameworks>
<AssemblyName>NetEscapades.AspNetCore.SecurityHeaders.Test</AssemblyName>
<PackageId>NetEscapades.AspNetCore.SecurityHeaders.Test</PackageId>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit eec8862

Please sign in to comment.