Embed symbols in package

This commit is contained in:
Patrik Svensson 2020-08-27 19:31:44 +02:00
parent 1b2f2dab82
commit 68aaf8a2fa
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,6 @@ Task("Package")
OutputDirectory = "./.artifacts",
MSBuildSettings = new DotNetCoreMSBuildSettings()
.TreatAllWarningsAs(MSBuildTreatAllWarningsAs.Error)
.WithProperty("SymbolPackageFormat", "snupkg")
});
});

View File

@ -2,7 +2,8 @@
<PropertyGroup Label="Settings">
<Deterministic>true</Deterministic>
<LangVersion>8.0</LangVersion>
<IncludeSymbols>true</IncludeSymbols>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>