I've created a bare-bone git-repository with a Github Action which builds and publishes a nuget package containing 2 .NET templates. These templates can be installed using
dotnet new --install MintPlayer.AspNetCore.IdentityServer.Templates
Then you can create a new project using
dotnet new id-provider
But these templates aren't available from Visual Studio 2022, even though I've added the .template.config/ide.host.json
file:
{
"$schema": "http://json.schemastore.org/vs-2017.3.host",
"order": 0,
"icon": "music_note_64.png",
"symbolInfo": [
]
}
What do I need to do to get them into Visual Studio 2022 too? Do I need a VSIX package, like in this example? Is it necessary to upload a VSIX to the Visual Studio Marketplace?
Here's a similar question, but it's from when this was an experimental feature. Now this option doesn't seem to exist anymore.
Here too they mention the experimental feature which I can't find anymore...