-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathZyborg.Collections.RadixTree.csproj
47 lines (42 loc) · 2.18 KB
/
Zyborg.Collections.RadixTree.csproj
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
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<RootNamespace>Zyborg.Collections</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<!--
- Resolve versioning information in concert with AppVeyor environment and
- also verifies that the base version info here agrees with the AV config
-->
<PropertyGroup>
<BaseVersion>1.0.1</BaseVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(APPVEYOR_BUILD_NUMBER)'==''">
<FullVersion>$(BaseVersion).0</FullVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(APPVEYOR_BUILD_NUMBER)'!=''">
<FullVersion>$(BaseVersion).$(APPVEYOR_BUILD_NUMBER)</FullVersion>
</PropertyGroup>
<Target Name="CheckAppVeyorVersion" Condition="'$(APPVEYOR_BUILD_NUMBER)'!=''" BeforeTargets="Build">
<Error Condition="$(FullVersion)!=$(APPVEYOR_BUILD_VERSION)" Text="***********************************************" />
<Error Condition="$(FullVersion)!=$(APPVEYOR_BUILD_VERSION)" Text="** AppVeyor version does not match BaseVersion!" />
<Error Condition="$(FullVersion)!=$(APPVEYOR_BUILD_VERSION)" Text="***********************************************" />
</Target>
<PropertyGroup>
<AssemblyName>Zyborg.Collections.RadixTree</AssemblyName>
<AssemblyTitle>Radix Tree for .NET</AssemblyTitle>
<AssemblyVersion>$(FullVersion)</AssemblyVersion>
<Authors>https://github.com/zyborg/Zyborg.RadixTree/graphs/contributors</Authors>
<Company>https://github.com/zyborg</Company>
<Product>Zyborg.RadixTree</Product>
<Copyright>Copyright © Eugene Bekker. All rights reserved. Licensed under the MIT License.</Copyright>
<PackageProjectUrl>https://github.com/zyborg/Zyborg.RadixTree</PackageProjectUrl>
<Version>$(FullVersion)</Version>
<FileVersion>$(FullVersion)</FileVersion>
<Description>.NET implementation of radix trees, ported from the Go implementation.</Description>
<PackageLicenseUrl>https://github.com/zyborg/Zyborg.RadixTree/blob/master/LICENSE</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.ValueTuple" Version="4.3.0" />
</ItemGroup>
</Project>