mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-22 15:28:46 -04:00
* Include managed stack traces for native crashes on sentry Write Managed stack traces to a separate txt and attach to native sentry crashes. * Always write minidump to disk even in retail builds we delete it later after processing
19 lines
637 B
XML
19 lines
637 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<OutputPath>..\..\..\game\bin\managed</OutputPath>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="3.1.512801" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|