我们可以使用dotnet test /p:DebugType=full blabla\Vse.AdminkaV1.Injected.NETStandard.Test.csproj
生成sdandard pdb(核心项目默认生成可移植的pdbs)
但如何在csproj文件中保存此选项?
答案 0 :(得分:2)
我通常做的是卸载你的项目 - >右键单击 - >编辑你的.csproj - >在这里,您可以更改debugtype
<PropertyGroup>
<DebugType>Full</DebugType>
</PropertyGroup>