是否可以使用新的 csproj 项目文件覆盖或清除 dll 构建中的调试路径?

Is it possible to override or clear the debug path in a dll build with new csproj project file?

当使用 dumpbin 查看我的图书馆的详细信息时:
dumpbin /headers Test.dll

我看到 {{FullFolder to Test.pdb}} 是 pdb 的完整文件夹。

调试目录

    Time Type        Size      RVA  Pointer
-------- ------- -------- -------- --------
95BA9373 cv            A1 000199D4    17BD4    Format: RSDS, {4AF64893-BAF4-4FF3-9343-E8D5A55E94FF}, 1, {{FullFolder to Test.pdb}}
00000000 repro          0 00000000        0

有没有办法在 csproj 文件中排除它?

我的 .csproj 看起来像:

<DebugType>full</DebugType>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<PdbPath>none</PdbPath>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

似乎 PdbPath 元素在 new(vs2017 多框架) .csproj 格式中不再起作用?

为此在 roslyn 2+ 中引入的编译器标志是 /pathmap 或等效的 csproj PathMap 属性:

<PropertyGroup>
  <PathMap>$(MSBuildProjectDirectory)=/some/dir</PathMap>
</PropertyGroup>