forked from Selectively11/STFixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudFix.csproj
More file actions
26 lines (23 loc) · 951 Bytes
/
Copy pathCloudFix.csproj
File metadata and controls
26 lines (23 loc) · 951 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
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>STFixer</AssemblyName>
<RootNamespace>CloudFix</RootNamespace>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Version>0.7.1</Version>
<NoWarn>CA1416</NoWarn>
<ApplicationIcon>steam_logo3.ico</ApplicationIcon>
<CETCompat>false</CETCompat>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="payload.cache" LogicalName="payload.cache" />
<EmbeddedResource Include="Stella\stella_fallback.dll" LogicalName="stella_fallback.dll" />
<Compile Remove="ExtractTool\**" />
</ItemGroup>
</Project>