forked from RobThree/IdGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IdGen.nuspec
31 lines (31 loc) · 1.91 KB
/
IdGen.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>IdGen</id>
<title>IdGen</title>
<version>2.0.0-rc</version>
<authors>RobIII</authors>
<owners>RobIII</owners>
<projectUrl>https://github.com/RobThree/IdGen</projectUrl>
<iconUrl>https://raw.githubusercontent.com/RobThree/IdGen/master/IdGenDocumentation/icons/Help.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://raw.githubusercontent.com/RobThree/IdGen/master/LICENSE</licenseUrl>
<description>Twitter Snowflake-alike ID generator for .Net</description>
<copyright>(C)2015-2016 Devcorner.nl</copyright>
<summary>
A library that provides a decentralized, k-ordered id generation
</summary>
<releaseNotes>
* Timesource(s) is (are) no longer fixed to milliseconds; we now have the concept of a 'tick'. Each timesource can define it's own definition of what a 'tick' is, be it a millisecond or a minute or any other timespan.
* This means breaking changes in the ITimeSource interface and the way timesources are implemented and breaking changes in some of the MaskConfig's method signatures.
* The IIdGenerator<T> interface now explicitly exposes an IdGenerator's ITimeSource, MaskConfig and Epoch as (read-only) properties.
* CreateMachineSpecificGenerator & CreateThreadSpecificGenerator methods have been removed; these are way to 'dangerous' to use anyway since they are very prone to 'collisions' in 'auto-generated' values for the IdGenerators.
</releaseNotes>
<tags>scalable unique id generator distributed</tags>
</metadata>
<files>
<file src="IdGen\bin\Release\IdGen.dll" target="lib\net45" />
<file src="IdGen\bin\Release\IdGen.XML" target="lib\net45" />
<file src="IdGenDocumentation\Help\IdGenHelp.chm" target="content" />
</files>
</package>