David Karlaš
David Karlaš
Currently there is no support for taking multiple existing templates and using them in another "multi-template" template... If I understand correctly you want to have easy way to create new...
This will need a lot of effort, we will consider doing...
@jianyexi can you give more info what you mean by scan? Is this during install or when instantiating template?
Consider not creating .csproj but instead .nuspec file, but for that we probably need https://github.com/NuGet/Home/issues/4254 to be fixed.
@keegandent notice .sln file format is Visual Studio file format which was in past Windows only and as far as I know doesn't work with parsing `/` as path separator,...
Notice that bug is open and we plan to fix this, question is just how
Just wanted to mention we didn't forget about this issue and I found nice example why we can't just blindly convert `\n` to `\r\n` and vice-versa. Lets assume that template...
@meyntony You don't need to do any of this, just always have `\n` for .sh file and no need to do any of this... Just ensure when you create NuGet...
Can you share a bit more details what are you expecting here? Do you expect `dotnet new editorconfig` like https://github.com/dotnet/templating/issues/3195 suggests or you expect `dotnet new console` to include `.editorconfig`...
Code where I reproduced: ``` class MyTest { public void Test() { foreach(MyTest } } ```