mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-06-02 19:31:56 -04:00
25 lines
823 B
XML
25 lines
823 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<AssemblyName>sbox-editor</AssemblyName>
|
|
<RootNamespace>SboxEditorLauncher</RootNamespace>
|
|
<LangVersion>14</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoWarn>CA1416</NoWarn>
|
|
|
|
<!-- NativeAOT for small standalone exe -->
|
|
<PublishAot>true</PublishAot>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<IlcOptimizationPreference>Size</IlcOptimizationPreference>
|
|
<StackTraceSupport>false</StackTraceSupport>
|
|
<UseSystemResourceKeys>true</UseSystemResourceKeys>
|
|
<IlcTrimMetadata>true</IlcTrimMetadata>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|