FritzAndFriends / StreamDeckToolkit

A .NET Standard library, template, and tools for building extensions to the Elgato Stream Deck
MIT License
164 stars 45 forks source link

Update install.md for powershell 7 instructions #185

Closed xjerod closed 1 year ago

xjerod commented 1 year ago

Technically this is two changes, first they changed the format of the command, and it seems they removed the Templates prefix as well.

❯ dotnet new -i Templates/StreamDeck.PluginTemplate.Csharp
Warning: use of 'dotnet new --install' is deprecated. Use 'dotnet new install' instead.
For more information, run:
   dotnet new install -h

❯ dotnet new install Templates/StreamDeck.PluginTemplate.Csharp
The following template packages will be installed:
   Templates/StreamDeck.PluginTemplate.Csharp

Templates/StreamDeck.PluginTemplate.Csharp is not supported.

❯ dotnet new install StreamDeckPluginTemplate
The following template packages will be installed:
   StreamDeckPluginTemplate

Success: StreamDeckPluginTemplate::0.5.2040 installed the following templates:
Template Name       Short Name         Language  Tags
------------------  -----------------  --------  ------------------------
Stream Deck Plugin  streamdeck-plugin  [C#]      Console/StreamDeckPlugin
csharpfritz commented 1 year ago

Thank you for the docs update!