-
Notifications
You must be signed in to change notification settings - Fork 0
/
SecurityDriven.FastXor.csproj
40 lines (36 loc) · 1.61 KB
/
SecurityDriven.FastXor.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>FastXor</PackageId>
<TargetFrameworks>net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Authors>Stan Drapkin</Authors>
<Company>https://SecurityDriven.net</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.ToString(yyyy)) Stan Drapkin</Copyright>
<RepositoryUrl>https://github.com/sdrapkin/SecurityDriven.FastXor</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.1</Version>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Inferno.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://avatars.githubusercontent.com/u/9137858?s=128</PackageIconUrl>
<PackageReleaseNotes>Fast Xor for .NET</PackageReleaseNotes>
<Description>Fast Xor for .NET</Description>
<PackageTags>Xor</PackageTags>
<PackageProjectUrl>https://github.com/sdrapkin/SecurityDriven.FastXor</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>SecurityDriven.FastXor.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SecurityDriven.FastXor.Tests\**" />
<EmbeddedResource Remove="SecurityDriven.FastXor.Tests\**" />
<None Remove="*.xml" />
<None Remove="SecurityDriven.FastXor.Tests\**" />
<None Remove="LICENSE.md" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>