Skip to content

Commit

Permalink
Remove netstandard2.1 target
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiek-galezowski committed Jul 17, 2024
1 parent 26a0daa commit 1b9bf42
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyName>TddXt.Any.Extensibility</AssemblyName>
<RootNamespace>TddXt.AnyExtensibility</RootNamespace>
<Authors>Grzegorz Gałęzowski</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/netstandard2.0/AnyGenerators/AnyGenerators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyName>TddXt.Any.Generators</AssemblyName>
<RootNamespace>TddXt.AnyGenerators</RootNamespace>
<Authors>Grzegorz Gałęzowski</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/netstandard2.0/AnyRoot/AnyRoot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyName>TddXt.Any.Root</AssemblyName>
<RootNamespace>TddXt.AnyRoot</RootNamespace>
<PackageId>Any</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/netstandard2.0/BuildScript/rules.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
* hasNoCircularUsings
*Specification hasAttributesOn *Specification:Should*
AnyRoot hasProperty TargetFrameworks:net8.0;netstandard2.1
AnyRoot hasProperty TargetFrameworks:net8.0
*Specification hasProperty TargetFramework:net8.0
* hasProperty Nullable:enable
* hasProperty LangVersion:latest
2 changes: 1 addition & 1 deletion src/netstandard2.0/TypeReflection/TypeReflection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyName>TddXt.Any.TypeReflection</AssemblyName>
<RootNamespace>TddXt.TypeReflection</RootNamespace>
<Authors>Grzegorz Gałęzowski</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class EmptyImmutableCollectionRelay : ISpecimenBuilder
{
public object Create(object request, ISpecimenContext context)
{
if (context == null) throw new ArgumentNullException(nameof(context));
ArgumentNullException.ThrowIfNull(context);

if (request is Type { IsGenericType: true } t)
{
Expand Down
2 changes: 1 addition & 1 deletion src/netstandard2.0/TypeResolution/TypeResolution.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AssemblyName>TddXt.Any.TypeResolution</AssemblyName>
<RootNamespace>TddXt.TypeResolution</RootNamespace>
<Authors>Grzegorz Gałęzowski</Authors>
Expand Down

0 comments on commit 1b9bf42

Please sign in to comment.