You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Yitter.IdGenerator.csproj 1.4 kB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. </PropertyGroup>
  5. <PropertyGroup>
  6. <LangVersion>latest</LangVersion>
  7. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  8. <Description>Shorter ID and faster generation with a new snowflake drift algorithm. The core is to shorten the ID length, but also can have a very high instantaneous concurrent processing capacity (50W/0.1s), and powerful configuration capacity.
  9. 一种全新的雪花漂移算法,让ID更短、生成速度更快。 核心在于缩短ID长度的同时,还能拥有极高瞬时并发处理量(50W/0.1s),及强大的配置能力。</Description>
  10. <AssemblyName>Yitter.IdGenerator</AssemblyName>
  11. <RootNamespace>Yitter.IdGenerator</RootNamespace>
  12. <Product>IdGenerator</Product>
  13. <Company>Yitter</Company>
  14. <Authors>Yitter</Authors>
  15. <Copyright>Yitter</Copyright>
  16. <PackageProjectUrl>https://github.com/yitter/idgenerator</PackageProjectUrl>
  17. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  18. <Version>1.0.12</Version>
  19. <PackageReleaseNotes></PackageReleaseNotes>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  22. <WarningLevel>5</WarningLevel>
  23. </PropertyGroup>
  24. </Project>