aboutsummaryrefslogtreecommitdiff
path: root/src/PkiAuthenticator.csproj
blob: b46036dba5ff4e5a48f51641be60aad71d77f93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <AssemblyName>vauth</AssemblyName>
    <Nullable>enable</Nullable>
    <RootNamespace>PkiAuthenticator</RootNamespace>
    <ProduceReferenceAssembly>True</ProduceReferenceAssembly>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>

  <PropertyGroup>
    <PackageId>PkiAuthenticator</PackageId>
    <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>
    <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/vauth</PackageProjectUrl>
    <RepositoryUrl>https://github.com/VnUgE/PkiAuthenticator</RepositoryUrl>
  </PropertyGroup>
  
  <ItemGroup>
    <PackageReference Include="Serilog" Version="3.0.1" />
    <PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
    <PackageReference Include="VNLib.Hashing.Portable" Version="0.1.0-ci0070" />
    <PackageReference Include="VNLib.Utils" Version="0.1.0-ci0070" />
    <PackageReference Include="Yubico.YubiKey" Version="1.8.0" />
  </ItemGroup>

</Project>