如何将csproj设置为setup / p:DebugType = full?

时间:2017-04-06 11:10:24

标签: .net-core visual-studio-2017

我们可以使用dotnet test /p:DebugType=full blabla\Vse.AdminkaV1.Injected.NETStandard.Test.csproj生成sdandard pdb(核心项目默认生成可移植的pdbs)

但如何在csproj文件中保存此选项?

1 个答案:

答案 0 :(得分:2)

我通常做的是卸载你的项目 - >右键单击 - >编辑你的.csproj - >在这里,您可以更改debugtype

<PropertyGroup>
    <DebugType>Full</DebugType>
  </PropertyGroup>
相关问题