Skip to content

Commit c566687

Browse files
authored
Move from net461 to net462 (#44)
1 parent 8440817 commit c566687

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
msbuild .\src\Pkcs11Interop.X509Store.sln /p:Configuration=Release /p:Platform="Any CPU" /target:Restore
2828
msbuild .\src\Pkcs11Interop.X509Store.sln /p:Configuration=Release /p:Platform="Any CPU" /target:Rebuild
2929
30-
- name: Test net461 assembly
30+
- name: Test net462 assembly
3131
shell: cmd
3232
run: |
3333
nunit3-console .\src\Pkcs11Interop.X509Store.Tests\bin\Release\net481\Pkcs11Interop.X509Store.Tests.dll

build/nuget-sign.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set SEVENZIP="c:\Program Files\7-Zip\7z.exe"
1111
set SIGNTOOL="C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe"
1212

1313
@rem Define signing options
14-
set CERTHASH=3336dc12261fed71ab08ab364bf5d0f53083b00d
14+
set CERTHASH=7e26cd682dc453927843a514f2110977a0e4709f
1515
set TSAURL=http://time.certum.pl/
1616
set LIBNAME=Pkcs11Interop.X509Store
1717
set LIBURL=https://www.pkcs11interop.net/
@@ -33,7 +33,7 @@ del /Q *.nupkg || goto :error
3333

3434
@rem Sign all assemblies using SHA256withRSA algorithm
3535
%SIGNTOOL% sign /sha1 %CERTHASH% /fd sha256 /tr %TSAURL% /td sha256 /d %LIBNAME% /du %LIBURL% ^
36-
lib\net461\Pkcs11Interop.X509Store.dll ^
36+
lib\net462\Pkcs11Interop.X509Store.dll ^
3737
lib\netstandard2.0\Pkcs11Interop.X509Store.dll || goto :error
3838

3939
@rem Create signed package with signed assemblies
@@ -47,6 +47,7 @@ rmdir /S /Q lib || goto :error
4747
del /Q *.nuspec || goto :error
4848
del /Q *.txt || goto :error
4949
del /Q *.png || goto :error
50+
del /Q *.md || goto :error
5051

5152
@echo *** SIGN SUCCESSFUL ***
5253
@endlocal

doc/05_FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pkcs11Interop.X509Store is periodically tested on Windows, Linux and macOS. It w
1414

1515
## What .NET runtimes are supported?
1616

17-
Pkcs11Interop.X509Store is compatible with .NET Framework 4.6.1 and newer, .NET 5 and newer, and a [few other runtimes](https://www.nuget.org/packages/Pkcs11Interop.X509Store#supportedframeworks-body-tab).
17+
Pkcs11Interop.X509Store is compatible with .NET Framework 4.6.2 and newer, .NET 5 and newer, and a [few other runtimes](https://www.nuget.org/packages/Pkcs11Interop.X509Store#supportedframeworks-body-tab).
1818

1919
## What algorithms are supported?
2020

src/Pkcs11Interop.X509Store/Pkcs11Interop.X509Store.csproj

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

33
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
4-
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">

0 commit comments

Comments
 (0)