-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSteamTokenDumper.csproj
53 lines (53 loc) · 2.68 KB
/
SteamTokenDumper.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Exe</OutputType>
<ApplicationIcon>steamdb.ico</ApplicationIcon>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<Deterministic>true</Deterministic>
<Authors>SteamDB</Authors>
<Company>SteamDB</Company>
<Copyright>SteamDB</Copyright>
<Description>This program dumps all possible app tokens, package tokens and depot keys for steamdb.info</Description>
<PackageProjectUrl>https://steamdb.info/tokendumper/</PackageProjectUrl>
<RepositoryUrl>https://github.com/SteamDatabase/SteamTokenDumper</RepositoryUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>SteamTokenDumper.snk</AssemblyOriginatorKeyFile>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<InvariantGlobalization>true</InvariantGlobalization>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<_DefaultValueAttributeSupport>true</_DefaultValueAttributeSupport>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.3.1" />
<PackageReference Include="QRCoder" Version="1.6.0" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="SteamKit2" Version="3.0.2" />
<PackageReference Include="ValveKeyValue" Version="0.12.0.391" />
</ItemGroup>
<ItemGroup>
<None Update="SteamTokenDumper.config.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- Trimming functionality as described on https://learn.microsoft.com/dotnet/core/deploying/trimming/trimming-options -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebuggerSupport>false</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<UseNativeHttpHandler>true</UseNativeHttpHandler>
<TrimMode>partial</TrimMode>
</PropertyGroup>
</Project>