-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnowflakes.csproj
42 lines (37 loc) · 1.69 KB
/
Snowflakes.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Snowflakes</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<Title>Snowflakes</Title>
<Product>$(Title)</Product>
<Authors>Şafak Gür</Authors>
<Description>Snowflakes is a .NET implementation of the distributed unique ID generator created by Twitter (now X).</Description>
<Copyright>Copyright © Şafak Gür 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/safakgur/snowflakes</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo-64.png</PackageIcon>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageOutputPath>../artifacts/</PackageOutputPath>
<PackageTags>snowflake-id;snowflake-twitter;distributed-id;distributed;id;id-generator</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Visible="false" Pack="true" PackagePath="/" />
<None Include="../media/logo-64.png" Visible="false" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>