Skip to content

Commit 9214490

Browse files
Merge pull request #212 from NetDevPack/feat/net7
Feat/net7
2 parents 3fc314a + fff1f62 commit 9214490

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/hooks/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test "" = "$(grep '^Signed-off-by: ' "$1" |
2222
echo >&2 Duplicate Signed-off-by lines.
2323
exit 1
2424
}
25-
if ! head -1 "$1" | grep -qE "^(feat|fix|ci|chore|docs|test|style|refactor|chk)(\(.+?\))?: .{1,}$"; then
25+
if ! head -1 "$1" | grep -qE "^(feat|fix|ci|chore|docs|test|style|refactor|chk)(\(.+?\))?(\!)?: .{1,}$"; then
2626
echo "Aborting commit. Your commit message is invalid. See some examples below:" >&2
2727
echo "feat(logging): added logs for failed signups" >&2
2828
echo "fix(homepage): fixed image gallery" >&2

.github/workflows/publish-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

22-
- name: Setup .NET 6
23-
uses: actions/setup-dotnet@v1
22+
- name: Setup .NET 7
23+
uses: actions/setup-dotnet@v3
2424
with:
25-
dotnet-version: 6.0.x
25+
dotnet-version: 7.0.x
2626

2727
- name: Restore dependencies
2828
run: dotnet restore

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

18-
- name: Setup .NET 6
19-
uses: actions/setup-dotnet@v1
18+
- name: Setup .NET 7
19+
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 6.0.x
21+
dotnet-version: 7.0.x
2222

2323
- name: Restore dependencies
2424
run: dotnet restore

README.md

12 Bytes

A strong password storage strategy is critical to mitigating data breaches that put the reputation of any organization in danger. Hashing is the foundation of secure password storage.

This component auto upgrade your AspNet Identity v2 or v3 password hash to one of these in this package. It does it after a user successfull login

Table of Contents

Binary file not shown.
Binary file not shown.
Binary file not shown.

src/NetDevPack.Security.PasswordHasher.Identity.Demo/NetDevPack.Security.PasswordHasher.Identity.Demo.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.0" />
12-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.2" />
13-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.2" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.2" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.2">
11+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.0" />
12+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" />
13+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.0" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
20-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.2" />
19+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
20+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)