maqs-dotnet
maqs-dotnet copied to clipboard
Templates Install Fails
I tried following directions in the documentation to install the templates and get this error. All I did was install the latest .NET SDK and then run the command in the MAQS 9.0.0 documentation. Did I do something wrong or am I missing something?

Edit:
I was able to get this to work by adding the version explicitly.
dotnet new --install CognizantSoftvision.Maqs.Templates::9.0.0
This still seems like an issue. Either in configuration or documentation.
Hi @Nokeo08,
Sorry about the late reply.
Please run dotnet new --list
This should show
Template Name Short Name Language Tags
-------------------------------------------- -------------- -------- ----
CognizantSoftvision MAQS Appium template MaqsAppium [C#] Test
CognizantSoftvision MAQS Base template MaqsBase [C#] Test
CognizantSoftvision MAQS composite template MaqsComposite [C#] Test
CognizantSoftvision MAQS database template MaqsDatabase [C#] Test
CognizantSoftvision MAQS email template MaqsEmail [C#] Test
CognizantSoftvision MAQS Playwright template MaqsPlaywright [C#] Test
CognizantSoftvision MAQS Selenium template MaqsSelenium [C#] Test
CognizantSoftvision MAQS webservice template MaqsWebservice [C#] Test
Use the short name for the install dotnet new MaqsSelenium
@Nokeo08,
Misunderstood your issue. Please check your NuGet feed configuration
run
dotnet nuget list source
You should see the following item
NuGet [Enabled]
https://api.nuget.org/v3/index.json
If not you need to add the feed by running the following command
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org