Troubleshooting - Jandini/JandaBox GitHub Wiki
Identity conflicts
You have ran dotnet new uninstall jandabox
but the templates still exist despite the command tells the templates are not present.
When installing new templates using dotnet new install jandabox
you see similar warnings:
Warning:
The following templates use the same identity 'JandaBox.Console':
'JandaBox Console App' from 'C:\Users\Matt\source\repos\Janda\JandaBox'
'JandaBox Console App' from 'JandaBox::0.7.0'
The template from 'JandaBox Console App' will be used. To resolve this conflict, uninstall the conflicting template packages.
Warning:
The following templates use the same identity 'JandaBox.Library':
'JandaBox NuGet Class Library' from 'C:\Users\Matt\source\repos\Janda\JandaBox'
'JandaBox NuGet Class Library' from 'JandaBox::0.7.0'
The template from 'JandaBox NuGet Class Library' will be used. To resolve this conflict, uninstall the conflicting template packages.
Warning:
The following templates use the same identity 'JandaBox.WebApi':
'JandaBox ASP.NET Core Web API' from 'C:\Users\Matt\source\repos\Janda\JandaBox'
'JandaBox ASP.NET Core Web API' from 'JandaBox::0.7.0'
The template from 'JandaBox ASP.NET Core Web API' will be used. To resolve this conflict, uninstall the conflicting template packages.
Success: JandaBox::0.7.0 installed the following templates:
Template Name Short Name Language Tags
----------------------------- ---------- -------- ----------------
JandaBox ASP.NET Core Web API webapibox [C#] JandaBox/WebApi
JandaBox Console App consolebox [C#] JandaBox/Console
JandaBox NuGet Class Library nugetbox [C#] JandaBox/NuGet
Solution is to run dotnet new uninstall C:\Users\Matt\source\repos\Janda\JandaBox
and use the folder location.