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: README.MD
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -46,13 +46,13 @@ The bit.ly link will always point to the latest release of ModuleFast by default
46
46
ModuleFast introduces a shorthand string syntax for defining module specifications. It generally takes the form of '<Module><Operator><Version>'. The version supports SemVer 2 and prerelease tags.
47
47
48
48
The available operators are:
49
-
-`=`: Exact version match. Examples: 'ImportExcel=7.1.0', 'ImportExcel=7.1.0-preview'
50
-
-`>`: Greater than. Example: 'ImportExcel>7.1.0'
51
-
-`>=`: Greater than or equal to. Example: 'ImportExcel>=7.1.0'
52
-
-`<`: Less than. Example: 'ImportExcel<7.1.0'
53
-
-`<=`: Less than or equal to. Example: 'ImportExcel<=7.1.0'
54
-
-`!`: A prerelease operator that can be present at the beginning or end of a module name to indicate that prerelease versions are acceptable. Example: 'ImportExcel!', '!ImportExcel'. It can be combined with the other operators like so: 'ImportExcel!>7.1.0'
55
-
-`:`: Lets you specify a NuGet version range. Example: 'ImportExcel:(7.0.0, 7.2.1-preview]'
49
+
-`=`: Exact version match. Examples: `ImportExcel=7.1.0`, `ImportExcel=7.1.0-preview`
50
+
-`>`: Greater than. Example: `ImportExcel>7.1.0`
51
+
-`>=`: Greater than or equal to. Example: `ImportExcel>=7.1.0`
52
+
-`<`: Less than. Example: `ImportExcel<7.1.0`
53
+
-`<=`: Less than or equal to. Example: `ImportExcel<=7.1.0`
54
+
-`!`: A prerelease operator that can be present at the beginning or end of a module name to indicate that prerelease versions are acceptable. Example: `ImportExcel!`, `!ImportExcel`. It can be combined with the other operators like so: 'ImportExcel!>7.1.0'
55
+
-`:`: Lets you specify a NuGet version range. Example: `ImportExcel:(7.0.0, 7.2.1-preview]`
56
56
57
57
For more information about NuGet version range syntax used with the ':' operator: https://learn.microsoft.com/en-us/nuget/concepts/package-versioning#version-ranges. Wilcards are supported with this syntax e.g. 'ImportExcel:3.2.*' will install the latest 3.2.x version.
0 commit comments