-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUUIDv9.csproj
More file actions
25 lines (22 loc) · 981 Bytes
/
Copy pathUUIDv9.csproj
File metadata and controls
25 lines (22 loc) · 981 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<PackageId>UUIDv9</PackageId>
<Version>1.0.1</Version>
<Authors>jhuntdev</Authors>
<Company></Company>
<Description>Fast, lightweight, zero-dependency .NET implementation of UUID version 9</Description>
<PackageProjectUrl>https://uuidv9.jhunt.dev</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/jhuntdev/uuid-v9</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Copyright>Copyright 2023-2026</Copyright>
<PackageTags>dotnet uuid v9 version 9 universally unique identifier globally guid id</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>