Skip to content

Commit f471694

Browse files
committed
Dropped test target for .NET Framework
1 parent 0a29d0b commit f471694

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/dotnet.yml

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v2
19-
- name: Setup .NET 4.6.2
20-
uses: actions/setup-dotnet@v1
21-
with:
22-
dotnet-version: '4.6.2'
2319
- name: Setup .NET Core 2.1
2420
uses: actions/setup-dotnet@v1
2521
with:

src/ScottBrady91.AspNetCore.Identity.BCryptPasswordHasher/ScottBrady91.AspNetCore.Identity.BCryptPasswordHasher.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<ItemGroup>
1919
<PackageReference Include="BCrypt.Net-Next" Version="4.0.2" />
2020
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.1.0" />
21+
<PackageReference Include="SecurityCodeScan" Version="3.5.3" PrivateAssets="all" />
2122
</ItemGroup>
2223

2324
</Project>

test/ScottBrady91.AspNetCore.Identity.BCryptPasswordHasher.Tests/ScottBrady91.AspNetCore.Identity.BCryptPasswordHasher.Tests.csproj

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net461;netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -14,10 +14,6 @@
1414
</PackageReference>
1515
</ItemGroup>
1616

17-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
18-
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.1.6" />
19-
</ItemGroup>
20-
2117
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
2218
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.1.6" />
2319
</ItemGroup>

0 commit comments

Comments
 (0)