forked from elastic/apm-agent-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
25 lines (25 loc) · 949 Bytes
/
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
<Project>
<!-- Src Directory Build Properties -->
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<AssemblyVersion>1.7.1</AssemblyVersion>
<InformationalVersion>1.7.1</InformationalVersion>
<FileVersion>1.7.1</FileVersion>
<VersionPrefix>1.7.1</VersionPrefix>
<Authors>Elastic and contributors</Authors>
<Copyright>2020 Elasticsearch BV</Copyright>
<PackageProjectUrl>https://github.com/elastic/apm-agent-dotnet</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>nuget-icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionRoot)/build/nuget-icon.png">
<Pack>True</Pack>
<PackagePath>.</PackagePath>
</None>
<None Include="$(SolutionRoot)/LICENSE">
<Pack>True</Pack>
<PackagePath>.</PackagePath>
</None>
</ItemGroup>
</Project>