This repository was archived by the owner on Aug 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
38 lines (32 loc) · 1.92 KB
/
Directory.Build.props
File metadata and controls
38 lines (32 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>The OpenTracing Authors</Authors>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/15482765</PackageIconUrl>
<PackageProjectUrl>https://github.com/opentracing/opentracing-csharp</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/opentracing/opentracing-csharp/master/LICENSE</PackageLicenseUrl>
<PackageReleaseNotes Condition="'$(Version)' != ''">https://github.com/opentracing/opentracing-csharp/releases/tag/$(Version)</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/opentracing/opentracing-csharp</RepositoryUrl>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Projects that should generate nuget packages override this setting -->
<IsPackable>false</IsPackable>
<!-- SourceLink support -->
<DebugType>portable</DebugType>
<SourceLinkNoAutoLF>true</SourceLinkNoAutoLF>
<!-- There's currently a pack-warning because of the long "Description" tag. However, "Summary" is no longer supported.
This will be fixed in an upcoming version of nuget. The workaround for now is to just disable analysis.
https://github.com/NuGet/Home/issues/4587#issuecomment-288913324 -->
<NoPackageAnalysis>true</NoPackageAnalysis>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)OpenTracing.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SourceLink.Create.GitHub" Version="2.8.1" PrivateAssets="All" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.8.1" />
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="2.8.1" />
</ItemGroup>
</Project>