mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-25 15:38:31 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
22 lines
827 B
XML
22 lines
827 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
<OutputPath>..\..\..\game\bin\managed</OutputPath>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<SentryDisableSourceGenerator>true</SentryDisableSourceGenerator>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Sandbox.AppSystem\Sandbox.AppSystem.csproj" />
|
|
<ProjectReference Include="..\..\Sandbox.Compiling\Sandbox.Compiling.csproj" />
|
|
<ProjectReference Include="..\..\Sandbox.Engine\Sandbox.Engine.csproj" />
|
|
<ProjectReference Include="..\..\Sandbox.Menu\Sandbox.Menu.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|