You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Directory.Build.props
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@
21
21
<Company>osexpert</Company>
22
22
<PackageReleaseNotes>See https://github.com/osexpert/GuidPhantom/blob/master/CHANGELOG.md for details</PackageReleaseNotes>
23
23
24
-
<VersionPrefix>0.0.2</VersionPrefix>
24
+
<VersionPrefix>0.0.3</VersionPrefix>
25
25
<PackageTags>guid uuid</PackageTags>
26
-
<Description>Yet another Guid library:-) Create Guid v1,v3,v5,v6,v7,v8MsSql,v8SHA256,v8SHA512,NEWSEQUENTIALID,XorGuid,NumericGuid,IncrementedGuid. Convert between v1 and v6. Convert between v7 and v8MsSql. Create monotonic sequence of v7 and v8MsSql Guid's. Get Guid info.</Description>
26
+
<Description>Yet another Guid library:-) Create Guid v1,v3,v5,v6,v7,v8MsSql,v8SHA256,v8SHA512,NEWSEQUENTIALID,XorGuid,NumericGuid,IncrementedGuid. Convert between v1 and v6. Convert between v7 and v8MsSql. Get Guid info.</Description>
Copy file name to clipboardExpand all lines: README.md
+2-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# GuidPhantom
2
-
Yet another Guid library:-) Create Uuid v1, v3, v5, v6, v7, v8MsSql, v8SHA256, v8SHA512, convert between v1 and v6, convert between v7 and v8MsSql, get info about a Guid (dissect), create monotonic sequence of v7 and v8MsSql Guid's, create NEWSEQUENTIALID (ms sql), create/reverse Xor Guid, create/reverse numeric Guid, create/reverse incremented Guid.
2
+
Yet another Guid library:-) Create Uuid v1, v3, v5, v6, v7, v8MsSql, v8SHA256, v8SHA512, convert between v1 and v6, convert between v7 and v8MsSql, get info about a Guid (dissect), create NEWSEQUENTIALID (ms sql), create/reverse Xor Guid, create/reverse numeric Guid, create/reverse incremented Guid.
3
3
4
4
var v1 = GuidKit.CreateVersion1();
5
5
var v3 = GuidKit.CreateVersion3(new Guid("d2f2f0fe-cbf8-4dc8-9ecb-eedd066dc105"), "Test42");
@@ -13,9 +13,6 @@ Yet another Guid library:-) Create Uuid v1, v3, v5, v6, v7, v8MsSql, v8SHA256, v
13
13
var v1_converted = v6.ConvertVersion6To1();
14
14
var nsi = GuidKit.CreateNEWSEQUENTIALID();
15
15
16
-
var v7_1000 = GuidKit.CreateVersion7Sequence().Take(1000);
17
-
var v8MsSql7_1000 = GuidKit.CreateVersion8MsSqlSequence().Take(1000);
18
-
19
16
var vv = nsi.GetVariantAndVersion();
20
17
var info = nsi.GetGuidInfo();
21
18
@@ -28,4 +25,4 @@ Yet another Guid library:-) Create Uuid v1, v3, v5, v6, v7, v8MsSql, v8SHA256, v
28
25
var inc = GuidKit.CreateIncrementedGuid(new Guid("d2f2f0fe-cbf8-4dc8-9ecb-eedd066dc105"), 42);
29
26
int inc42 = inc.ReverseIncrementedGuid(new Guid("d2f2f0fe-cbf8-4dc8-9ecb-eedd066dc105"));
30
27
31
-
Also has sql scripts for ms sql server to create Guid v3,v5,v7(no sequence),v8mssql(no sequence) and convert v7<->v8mssql.
28
+
Also has sql scripts for ms sql server to create Guid v3,v5,v7,v8mssql and convert v7<->v8mssql.
0 commit comments