Skip to content

Releases: ASCOMInitiative/AlpacaRazorDriverDemo

v0.5.alpha03

v0.5.alpha03 Pre-release
Pre-release

Choose a tag to compare

@DanielVanNoord DanielVanNoord released this 18 Oct 12:04

This is the first test release of the C# Alpaca templates. These use the ASCOM OmniSim Razor code to create the APIs.

To install

  1. Download the attached Nuget package (ASCOM.Alpaca.Templates.0.5.0-alpha03.nupkg)
  2. Install with dotnet new
    dotnet new install .\ASCOM.Alpaca.Templates.0.5.0-alpha03.nupkg
    You should see a message that looks like:
Success: ASCOM.Alpaca.Templates::1.0.0 installed the following templates:
Template Name       Short Name  Language  Tags
------------------  ----------  --------  ----
ASCOM Alpaca Razor  alpacacs    [C#]      

  1. To print the Help Information dotnet new alpacacs -h Currently the Project Name, DriverID, Manufacturer, Port and Server Name can be set
  2. For example:
dotnet new alpacacs -n DansDriver -dr DansDriver.Alpaca -m "Daniel Van Noord" -p 34567 -s "A Sample Alpaca Server"

Creates a new driver named DansDriver with ID, Manufacturer, Port and Server Name set. If you don't set the name it should use the name of the containing folder. You can then run the created project by entering the folder and starting it with dotnet run.
5. To remove: dotnet new uninstall ASCOM.Alpaca.Templates

v0.5.0.alpha02

v0.5.0.alpha02 Pre-release
Pre-release

Choose a tag to compare

@DanielVanNoord DanielVanNoord released this 18 May 20:05

This is the first test release of the C# Alpaca templates. These use the ASCOM OmniSim Razor code to create the APIs.

To install

  1. Download the attached Nuget package (ASCOM.Alpaca.Templates.0.5.0-alpha02.nupkg)
  2. Install with dotnet new
    dotnet new install .\ASCOM.Alpaca.Templates.0.5.0-alpha02.nupkg
    You should see a message that looks like:
Success: ASCOM.Alpaca.Templates::1.0.0 installed the following templates:
Template Name       Short Name  Language  Tags
------------------  ----------  --------  ----
ASCOM Alpaca Razor  alpacacs    [C#]      

  1. To print the Help Information dotnet new alpacacs -h Currently the Project Name, DriverID, Manufacturer, Port and Server Name can be set
  2. For example:
dotnet new alpacacs -n DansDriver -dr DansDriver.Alpaca -m "Daniel Van Noord" -p 34567 -s "A Sample Alpaca Server"

Creates a new driver named DansDriver with ID, Manufacturer, Port and Server Name set. If you don't set the name it should use the name of the containing folder. You can then run the created project by entering the folder and starting it with dotnet run.
5. To remove: dotnet new uninstall ASCOM.Alpaca.Templates