Hmm, strange that definitely worked on a fresh VM for me just now:
It is only necessary to specify the version for the nightlies I believe, but they also require a different myget feed.
I'm curious what happens if you do dotnet new --uninstall Umbraco.Templates and then try dotnet new -i Umbraco.Templates::* again, you should see something similar to the screenshot above?
FWIW I get the same thing. When I run dotnet new -i Umbraco.Templates::* it just outputs a list of the installed templates (exactly the same output as when running dotnet new -all) and it's not showing any Umbraco packages in there.
Running dotnet new --uninstall Umbraco.Templates yields: Could not find something to uninstall called 'Umbraco.Templates'.
Finally, specifying the version works, as per Kevin's answer above.
Falling before the first hurdle - faulty instructions?
I'm following the instructions here: https://our.umbraco.com/Documentation/Fundamentals/Setup/Install/install-umbraco-with-templates
On step 2 (
dotnet new -i Umbraco.Templates::*
) results in the same list of templates asdotnet new -all
. Needless to say, Umbraco does not feature.Is there a typo in the instructions?
Hi
I think the instructions will work when Umbraco 9.0 is released, but at the moment its only in release candidate so you have to put in the version...
Hmm, strange that definitely worked on a fresh VM for me just now:
It is only necessary to specify the version for the nightlies I believe, but they also require a different myget feed.
I'm curious what happens if you do
dotnet new --uninstall Umbraco.Templates
and then trydotnet new -i Umbraco.Templates::*
again, you should see something similar to the screenshot above?Perhaps I am doing it wrong? Very new to command line.
FWIW I get the same thing. When I run
dotnet new -i Umbraco.Templates::*
it just outputs a list of the installed templates (exactly the same output as when runningdotnet new -all
) and it's not showing any Umbraco packages in there.Running
dotnet new --uninstall Umbraco.Templates
yields:Could not find something to uninstall called 'Umbraco.Templates'
.Finally, specifying the version works, as per Kevin's answer above.
is working on a reply...