-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaskedUUID.AspNetCore.csproj
More file actions
38 lines (31 loc) · 1.39 KB
/
MaskedUUID.AspNetCore.csproj
File metadata and controls
38 lines (31 loc) · 1.39 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<ItemGroup>
<PackageReference Include="UUIDv47Sharp" Version="0.1.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<!-- NuGet Package Settings -->
<PackageId>MaskedUUID.AspNetCore</PackageId>
<VersionPrefix>1.0</VersionPrefix>
<Authors>actbit</Authors>
<Description>ASP.NET Core で UUIDv7 のタイムスタンプ部を UUIDv47 アルゴリズムでマスクし、可逆的に変換するライブラリ</Description>
<PackageTags>uuid;uuidv7;uuidv47;aspnetcore;masking</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.en.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/actbit/MaskedUUID</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.en.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>