Update [CosmicWorks]() CLI installation command to future-proof against version 2.x launching soon.
Old command: dotnet tool install --global cosmicworks (This command will break the labs when 2.x launches because it always installs the latest version.)
New command: dotnet tool install cosmicworks --global --version 1.* (This command will never install a version > 1.x)
Module: Multiple
Lab/Demo: 03, 09, 10, 11, 13, 14, 15, 24, 33
Changes proposed in this pull request:
dotnet tool install --global cosmicworks
(This command will break the labs when 2.x launches because it always installs the latest version.)dotnet tool install cosmicworks --global --version 1.*
(This command will never install a version > 1.x)