• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!-- Ensure that debugging of the resulting NuGet packages work (we're using SourceLink). -->
2<Project>
3
4  <ItemGroup Label="dotnet pack instructions">
5    <Content Include="$(OutputPath)netstandard1.5\$(PackageId).pdb">
6      <Pack>true</Pack>
7      <PackagePath>lib/netstandard1.5</PackagePath>
8    </Content>
9    <Content Include="$(OutputPath)net45\$(PackageId).pdb">
10      <Pack>true</Pack>
11      <PackagePath>lib/net45</PackagePath>
12    </Content>
13  </ItemGroup>
14
15  <ItemGroup>
16    <PackageReference Include="SourceLink.Create.CommandLine" Version="2.7.6" PrivateAssets="all" />
17  </ItemGroup>
18
19</Project>
20