-
Notifications
You must be signed in to change notification settings - Fork 0
/
SteamAuth.csproj
27 lines (23 loc) · 912 Bytes
/
SteamAuth.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.0.2</Version>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>SteamAuth</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>true</PublishTrimmed>
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CrossPlatformProtectedData" Version="1.0.3" />
<PackageReference Include="Ookii.CommandLine" Version="3.0.0" />
<PackageReference Include="SteamGuard.TOTP" Version="1.0.0" />
<PackageReference Include="TextCopy" Version="6.2.1" />
</ItemGroup>
</Project>