Files
sbox-public/engine/Tools/EditorLauncher/EditorLauncher.csproj

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>