Skip to content

Commit

Permalink
drop net461
Browse files Browse the repository at this point in the history
fixes #658
  • Loading branch information
SimonCropp committed Dec 7, 2022
1 parent eabbc32 commit 7116a95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ApprovalTests/ApprovalTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion src/ApprovalTests/Namers/ApprovalResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static string GetDotNetVersion()
return "Net_v" + Environment.Version;
}

#if (!NET461)
#if (!NET462)
public static IDisposable UniqueForRuntime(bool throwOnError = true)
{
return NamerFactory.AsEnvironmentSpecificTest(GetDotNetRuntime(throwOnError));
Expand Down
2 changes: 1 addition & 1 deletion src/ApprovalUtilities/ApprovalUtilities.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down

0 comments on commit 7116a95

Please sign in to comment.