forked from tvandijck/meow_hash.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meow_hash.NET.csproj
34 lines (29 loc) · 1.17 KB
/
meow_hash.NET.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Meow</RootNamespace>
<Version>0.5.1</Version>
<Authors>Tom van Dijck</Authors>
<Description>Port of meow_hash to .NET Core 3.1+
https://github.com/cmuratori/meow_hash</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/tvandijck/meow_hash.NET</PackageProjectUrl>
<Company>mudGE Entertainment</Company>
<Copyright>(C) Copyright 2020 Tom van Dijck.</Copyright>
<RepositoryUrl>https://github.com/tvandijck/meow_hash.NET</RepositoryUrl>
<PackageId>meow_hash.net</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>