Files
sbox-public/engine/Launcher/CrashReporter/CrashReporter.csproj
Lorenz Junglas 7602774bab Sentry managed stacks for native crashes (#3809)
* 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
2026-01-19 18:30:35 +01:00

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>