-
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
296 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard1.1</TargetFrameworks> | ||
<Authors>RobIII</Authors> | ||
<Company>Devcorner.nl</Company> | ||
<PackageId>IdGen</PackageId> | ||
<Product>IdGen</Product> | ||
<Copyright>Copyright © 2015 - 2022 Devcorner.nl</Copyright> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/RobThree/IdGen</PackageProjectUrl> | ||
<PackageTags>scalable unique id generator distributed</PackageTags> | ||
<PackageReleaseNotes>Minor internal changes</PackageReleaseNotes> | ||
<Description>Twitter Snowflake-alike ID generator for .Net</Description> | ||
<Version>3.0.1</Version> | ||
<RootNamespace>IdGen</RootNamespace> | ||
<PackageIcon>logo.png</PackageIcon> | ||
<PackageIconUrl /> | ||
<RepositoryUrl>https://github.com/RobThree/IdGen</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard1.1</TargetFrameworks> | ||
<Authors>RobIII</Authors> | ||
<Company>Devcorner.nl</Company> | ||
<PackageId>IdGen</PackageId> | ||
<Product>IdGen</Product> | ||
<Copyright>Copyright © 2015 - 2022 Devcorner.nl</Copyright> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/RobThree/IdGen</PackageProjectUrl> | ||
<PackageTags>scalable unique id generator distributed</PackageTags> | ||
<PackageReleaseNotes>Minor internal changes</PackageReleaseNotes> | ||
<Description>Twitter Snowflake-alike ID generator for .Net</Description> | ||
<Version>3.0.1</Version> | ||
<RootNamespace>IdGen</RootNamespace> | ||
<PackageIcon>logo.png</PackageIcon> | ||
<PackageIconUrl /> | ||
<RepositoryUrl>https://github.com/RobThree/IdGen</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.1|AnyCPU'"> | ||
<DocumentationFile>bin\Release\IdGen.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.1|AnyCPU'"> | ||
<DocumentationFile>bin\Release\IdGen.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\logo.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\logo.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="25494d74-9259-4b3b-b6dd-c9475c4a1061" revisionNumber="1"> | ||
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<introduction> | ||
<para> | ||
Version 3.0.1.0 was released on 2022-05-28. | ||
</para> | ||
</introduction> | ||
|
||
<section> | ||
<title>Changes in This Release</title> | ||
<content> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para>Internal changes and refactoring</para> | ||
</listItem> | ||
</list> | ||
|
||
</content> | ||
</section> | ||
|
||
<relatedTopics> | ||
<link xlink:href="4491ec46-0001-46c1-88b7-3dd2ee8472f3" /> | ||
</relatedTopics> | ||
|
||
</developerConceptualDocument> | ||
</topic> |
Oops, something went wrong.