-
Notifications
You must be signed in to change notification settings - Fork 1
/
SecurityDriven.FastGuid.csproj
50 lines (45 loc) · 1.76 KB
/
SecurityDriven.FastGuid.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
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>FastGuid</PackageId>
<TargetFrameworks>net5.0</TargetFrameworks>
<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.FastGuid</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.1.0</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Inferno.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://avatars.githubusercontent.com/u/9137858?s=128</PackageIconUrl>
<PackageReleaseNotes>
Performance improvements.
~10x faster than Guid.NewGuid().
Performance-tested on .NET 9, 8, 7, 6, and 5.
New SqlServer Guid helper methods - see README.
New FastGuid.Fill() method - see README.
</PackageReleaseNotes>
<Description>Fast replacement for Guid.NewGuid()</Description>
<PackageTags>Guid NewGuid Fast</PackageTags>
<PackageProjectUrl>https://github.com/sdrapkin/SecurityDriven.FastGuid</PackageProjectUrl>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>SecurityDriven.FastGuid.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="*.xml" />
</ItemGroup>
<ItemGroup>
<None Remove="LICENSE.md" />
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>