aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/PkiAuthenticator.csproj12
-rw-r--r--src/Program.cs4
2 files changed, 8 insertions, 8 deletions
diff --git a/src/PkiAuthenticator.csproj b/src/PkiAuthenticator.csproj
index 576b466..808b447 100644
--- a/src/PkiAuthenticator.csproj
+++ b/src/PkiAuthenticator.csproj
@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
+ <TargetFramework>net8.0</TargetFramework>
<AssemblyName>vauth</AssemblyName>
<Nullable>enable</Nullable>
<RootNamespace>PkiAuthenticator</RootNamespace>
@@ -15,8 +15,8 @@
<Authors>Vaughn Nugent</Authors>
<Company>Vaughn Nugent</Company>
<Product>PkiAuthenticator aka vauth</Product>
- <Description>A command line tool for generating certificate-based, signed, One-Time-Passwords for web/service authentication, with YubiKey support by default.</Description>
- <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
+ <Description>A .NET 8.0 command line tool for generating certificate-based, signed, One-Time-Passwords for web/service authentication, with YubiKey support by default.</Description>
+ <Copyright>Copyright © 2024 Vaughn Nugent</Copyright>
<PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/vauth</PackageProjectUrl>
<RepositoryUrl>https://github.com/VnUgE/PkiAuthenticator</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -37,9 +37,9 @@
<ItemGroup>
<PackageReference Include="Serilog" Version="3.1.1" />
- <PackageReference Include="Serilog.Sinks.Console" Version="5.0.0" />
- <PackageReference Include="VNLib.Hashing.Portable" Version="0.1.0-ci0096" />
- <PackageReference Include="VNLib.Utils" Version="0.1.0-ci0096" />
+ <PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
+ <PackageReference Include="VNLib.Hashing.Portable" Version="0.1.0-ci0114" />
+ <PackageReference Include="VNLib.Utils" Version="0.1.0-ci0114" />
<PackageReference Include="Yubico.YubiKey" Version="1.9.1" />
</ItemGroup>
diff --git a/src/Program.cs b/src/Program.cs
index d2fd034..cdbeea7 100644
--- a/src/Program.cs
+++ b/src/Program.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2023 Vaughn Nugent
+* Copyright (c) 2024 Vaughn Nugent
*
* Package: PkiAuthenticator
* File: Program.cs
@@ -166,7 +166,7 @@ namespace PkiAuthenticator
return 0;
}
- Log.Information("vauth © 2023 Vaughn Nugent");
+ Log.Information("vauth © 2024 Vaughn Nugent");
int exitCode = 1;
try