forked from jaegertracing/jaeger-client-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
27 lines (23 loc) · 1.3 KB
/
Directory.Build.props
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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>Chatham Financial Corp. and The Jaeger Authors</Authors>
<Copyright>Copyright 2018 (c) The Jaeger Authors. Copyright 2018 (c) Chatham Financial Corp.</Copyright>
<PackageProjectUrl>https://github.com/jaegertracing/jaeger-client-csharp</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>jaeger-icon.png</PackageIcon>
<PackageReleaseNotes Condition="'$(APPVEYOR_REPO_TAG_NAME)' != ''">https://github.com/jaegertracing/jaeger-client-csharp/releases/tag/$(APPVEYOR_REPO_TAG_NAME)</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/jaegertracing/jaeger-client-csharp</RepositoryUrl>
<!-- Projects that should generate nupkg files override this -->
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)SignKey.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)/images/jaeger-icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>