Skip to content

Commit a953071

Browse files
authored
Update README.MD
1 parent 102604c commit a953071

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.MD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ The bit.ly link will always point to the latest release of ModuleFast by default
4646
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.
4747

4848
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]`
5656

5757
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.
5858

0 commit comments

Comments
 (0)