This repository was archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathSystem.Data.HashFunction.FarmHash.FarmHashSharp.csproj
More file actions
52 lines (44 loc) · 2.55 KB
/
System.Data.HashFunction.FarmHash.FarmHashSharp.csproj
File metadata and controls
52 lines (44 loc) · 2.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Data.HashFunction implementation of FarmHash via FarmHash.Sharp (https://nickbabcock.github.io/Farmhash.Sharp/).</Description>
<Copyright>Copyright 2018</Copyright>
<AssemblyTitle>Data.HashFunction.FarmHash.FarmHashSharp</AssemblyTitle>
<VersionPrefix>2.0.0</VersionPrefix>
<Authors>Data.HashFunction Developers</Authors>
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>System.Data.HashFunction.FarmHash.FarmHashSharp</AssemblyName>
<AssemblyOriginatorKeyFile>../Data.HashFunction.Production.snk</AssemblyOriginatorKeyFile>
<SignAssembly>false</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">false</PublicSign>
<PackageId>System.Data.HashFunction.FarmHash.FarmHashSharp</PackageId>
<PackageTags>FarmHash;hash;function;farm;FarmHashSharp;FarmHash.Sharp</PackageTags>
<PackageReleaseNotes>https://github.com/brandondahler/Data.HashFunction/wiki/Release-Notes</PackageReleaseNotes>
<PackageLicenseUrl>https://raw.githubusercontent.com/brandondahler/Data.HashFunction/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/brandondahler/Data.HashFunction/</RepositoryUrl>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
</PropertyGroup>
<PropertyGroup Condition="'$(VcsRevision)'!=''">
<PackageReleaseNotes>$(PackageReleaseNotes)
vcs-revision: $(VcsRevision)
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\FriendAssemblies.Unsigned.cs" Link="Properties\FriendAssemblies.Unsigned.cs" />
<Compile Include="..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Farmhash.Sharp" Version="0.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Data.HashFunction.Core\System.Data.HashFunction.Core.csproj" />
<ProjectReference Include="..\System.Data.HashFunction.FarmHash\System.Data.HashFunction.FarmHash.csproj" />
<ProjectReference Include="..\System.Data.HashFunction.Interfaces\System.Data.HashFunction.Interfaces.csproj" />
</ItemGroup>
</Project>