8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 327472d commit 23f4db4Copy full SHA for 23f4db4
Directory.Build.targets
@@ -2,6 +2,13 @@
2
3
<PropertyGroup>
4
<PublicSign Condition=" '$(AssemblyOriginatorKeyFile)' != '' and '$(OS)' != 'Windows_NT' ">true</PublicSign>
5
+ <TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);IncludePDBsInPackage</TargetsForTfmSpecificContentInPackage>
6
</PropertyGroup>
7
8
+ <Target Name="IncludePDBsInPackage">
9
+ <ItemGroup>
10
+ <TfmSpecificPackageFile Include="$(OutputPath)\$(AssemblyName).pdb" PackagePath="lib/$(TargetFramework)" />
11
+ </ItemGroup>
12
+ </Target>
13
+
14
</Project>
0 commit comments