Skip to content

Commit

Permalink
Update README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinGrote authored Sep 11, 2024
1 parent 102604c commit a953071
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ The bit.ly link will always point to the latest release of ModuleFast by default
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.

The available operators are:
- `=`: Exact version match. Examples: 'ImportExcel=7.1.0', 'ImportExcel=7.1.0-preview'
- `>`: Greater than. Example: 'ImportExcel>7.1.0'
- `>=`: Greater than or equal to. Example: 'ImportExcel>=7.1.0'
- `<`: Less than. Example: 'ImportExcel<7.1.0'
- `<=`: Less than or equal to. Example: 'ImportExcel<=7.1.0'
- `!`: 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'
- `:`: Lets you specify a NuGet version range. Example: 'ImportExcel:(7.0.0, 7.2.1-preview]'
- `=`: Exact version match. Examples: `ImportExcel=7.1.0`, `ImportExcel=7.1.0-preview`
- `>`: Greater than. Example: `ImportExcel>7.1.0`
- `>=`: Greater than or equal to. Example: `ImportExcel>=7.1.0`
- `<`: Less than. Example: `ImportExcel<7.1.0`
- `<=`: Less than or equal to. Example: `ImportExcel<=7.1.0`
- `!`: 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'
- `:`: Lets you specify a NuGet version range. Example: `ImportExcel:(7.0.0, 7.2.1-preview]`

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.

Expand Down

0 comments on commit a953071

Please sign in to comment.