-
Notifications
You must be signed in to change notification settings - Fork 13
Installing scriptcs versions
The svm install command allows you to find and install scriptcs versions from the following source locations:
- stable (Chocolatey)
- nightlies (MyGet)
- local path (folder or .nupkg file)
The following command will list the scriptcs versions that are available to install.
svm install <-l|-list>This list is currently hard-coded in svm and only contains the last 5 stable releases (hence the current requirement to create a new release for new scriptcs versions). An api is on the roadmap that will provide svm with an up-to-date list of stable and nightly releases.
Example
> svm install -l
scriptcs version manager - 0.3.3
The following scriptcs versions are available for installation:
0.12.0
0.11.0
0.10.2
0.10.1
0.10.0The following command will install the scriptcs version indicated by <version>.
svm install <version>The versions available are from the hard-coded list in svm that only contains the last 5 stable releases. An api is on the roadmap that will provide svm with an up-to-date list of stable and nightly releases.
Example
> svm install 0.12.0
scriptcs version manager - 0.3.3
Downloading version '0.12.0' from 'http://chocolatey.org/api/v2/package/ScriptCs/0.12.0'.
Installing version '0.12.0'.
Version '0.12.0' is now available.
Consider using svm use <version> to set it as the active scriptcs version. svm install <version> <-f|-from> <path> [-s|-snapshot]** Example **
Install scriptcs version from path <path> as version <version>. Path may be a local folder or a local NuGet
package. If Path is a local folder, then a soft link to the local folder is created. Use the -snapshot option
to create a snapshot of the local folder instead of a soft link.
examples:
> svm install mybuild-0.11.0 -f 'C:\scriptcs\artifacts\Release\bin'
> svm install mybuild-0.11.0 -from '/tmp/scriptcs/artifacts/Release/bin' -snapshot
> svm install 0.11.0 -from 'C:\Downloads\ScriptCs.0.10.1.nupkg'
- Home
- Installing svm
- Windows
- OSX
- Linux
- Updating svm
- [Managing scriptcs versions](scriptcs versions)
- [Install](Installing scriptcs versions)
- [Use](Using scriptcs versions)
- [List](Listing scriptcs versions)
- [Remove](Removing scriptcs versions)
- How it works
- Community