Skip to content

Commit 5beac49

Browse files
authored
Merge pull request #27 from PandaTechAM/development
upgraded to .net 9
2 parents c8964a0 + ac35e07 commit 5beac49

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Setup .NET Core
22-
uses: actions/setup-dotnet@v3
22+
uses: actions/setup-dotnet@v4
2323
with:
2424
global-json-file: global.json
2525

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.204",
4-
"rollForward": "latestMajor"
3+
"version": "9.0.100",
4+
"rollForward": "latestMinor"
55
}
66
}
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Authors>Pandatech</Authors>
88
<Copyright>MIT</Copyright>
99
<PackageIcon>pandatech.png</PackageIcon>
1010
<PackageReadmeFile>Readme.md</PackageReadmeFile>
11-
<Version>3.0.0</Version>
11+
<Version>4.0.0</Version>
1212
<Title>Pandatech.Crypto</Title>
1313
<PackageTags>Pandatech, library, encryption, hash, algorythms, security</PackageTags>
1414
<Description>PandaTech.Crypto is a .NET library simplifying common cryptograhic functions.</Description>
1515
<RepositoryUrl>https://github.com/PandaTechAM/be-lib-pandatech-crypto</RepositoryUrl>
16-
<PackageReleaseNotes>Argon2id and Aes256 migrated from singleton service to static class. There will be huge breaking change but luckily it will be very easy to fix.</PackageReleaseNotes>
16+
<PackageReleaseNotes>Upgraded to .net 9</PackageReleaseNotes>
1717
</PropertyGroup>
1818

1919
<ItemGroup>
@@ -24,9 +24,8 @@
2424
<ItemGroup>
2525
<PackageReference Include="BouncyCastle.NetCore" Version="2.2.1"/>
2626
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1"/>
27-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.10"/>
28-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1"/>
29-
<PackageReference Include="Pandatech.RegexBox" Version="2.0.1"/>
27+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
28+
<PackageReference Include="Pandatech.RegexBox" Version="3.0.0" />
3029
</ItemGroup>
3130

3231
</Project>

test/Pandatech.Crypto.Tests/Pandatech.Crypto.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="FluentAssertions" Version="6.12.1"/>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
13+
<PackageReference Include="FluentAssertions" Version="6.12.2" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1515
<PackageReference Include="xunit" Version="2.9.2"/>
1616
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)