I am trying to add a wix project to an existing solution using the dotnet CLI command line.
dotnet sln add <project-name>.csproj
works fine
dotnet sln add <project-name>.wixproj
returns with an error -
" has an unknown project type and cannot be added to the solution file. Contact your SDK provider for support."
I have the wix toolset installed because I can add wix projects easily in visual studio - but I specifically need to do this on the command line. Any ideas?
I am expecting the command to add the project to the solution like the normal csprojs