Skip to content

Commit

Permalink
Merge pull request #36 from atc-net/feature/targets
Browse files Browse the repository at this point in the history
Add net8.0 target
  • Loading branch information
rickykaare authored Aug 15, 2024
2 parents 77a5bc5 + 637d672 commit f16b5c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -520,4 +520,5 @@ dotnet_diagnostic.CA1062.severity = none # Do not demand null-checkin
dotnet_diagnostic.CA1014.severity = none # No need for CLSCompliantAttribute
dotnet_diagnostic.SA1011.severity = none # Space needed after closing square bracet "]" needed for nullable arrays

dotnet_diagnostic.S1172.severity = none # False positive: Unused method parameters should be removed
dotnet_diagnostic.S1172.severity = none # False positive: Unused method parameters should be removed
dotnet_diagnostic.CA1510.severity = none # ArgumentNullException throw helper not available for all targets
2 changes: 1 addition & 1 deletion src/Atc.Test/Atc.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
<PackageId>Atc.Test</PackageId>
<PackageTags>xunit;NSubstitute;AutoFixture;FluentAssertions</PackageTags>
<Description>Common tools for writing tests using XUnit, AutoFixture, NSubstitute and FluentAssertions.</Description>
Expand Down

0 comments on commit f16b5c1

Please sign in to comment.