17 lines
730 B
XML
17 lines
730 B
XML
<Project>
|
|
|
|
<!-- See https://github.com/dotnet/sourcelink/issues/572 -->
|
|
<PropertyGroup>
|
|
<TargetFrameworkMonikerAssemblyAttributesPath>$([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)'))</TargetFrameworkMonikerAssemblyAttributesPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<EmbeddedFiles Include="$(GeneratedAssemblyInfoFile)"/>
|
|
</ItemGroup>
|
|
|
|
<!-- Use SourceLink for all production projects, and include the licence file -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
|
<None Include="$(RepoRoot)/LICENSE" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
</Project>
|