Skip to content

Commit f16b5c1

Browse files
authored
Merge pull request #36 from atc-net/feature/targets
Add net8.0 target
2 parents 77a5bc5 + 637d672 commit f16b5c1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.editorconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,4 +520,5 @@ dotnet_diagnostic.CA1062.severity = none # Do not demand null-checkin
520520
dotnet_diagnostic.CA1014.severity = none # No need for CLSCompliantAttribute
521521
dotnet_diagnostic.SA1011.severity = none # Space needed after closing square bracet "]" needed for nullable arrays
522522

523-
dotnet_diagnostic.S1172.severity = none # False positive: Unused method parameters should be removed
523+
dotnet_diagnostic.S1172.severity = none # False positive: Unused method parameters should be removed
524+
dotnet_diagnostic.CA1510.severity = none # ArgumentNullException throw helper not available for all targets

src/Atc.Test/Atc.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
55
<PackageId>Atc.Test</PackageId>
66
<PackageTags>xunit;NSubstitute;AutoFixture;FluentAssertions</PackageTags>
77
<Description>Common tools for writing tests using XUnit, AutoFixture, NSubstitute and FluentAssertions.</Description>

0 commit comments

Comments
 (0)