-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSteamFileDownloader.csproj
More file actions
24 lines (24 loc) · 991 Bytes
/
SteamFileDownloader.csproj
File metadata and controls
24 lines (24 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
<InvariantGlobalization>true</InvariantGlobalization>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<OutputPath>bin</OutputPath>
<OutputType>Exe</OutputType>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>true</PublishSingleFile>
<RollForward>LatestMajor</RollForward>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<SelfContained>true</SelfContained>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ConsoleAppFramework" Version="5.7.13" />
<PackageReference Include="SteamKit2" Version="3.4.0" />
<PackageReference Include="ValvePak" Version="4.0.0.142" />
</ItemGroup>
</Project>