Description
Describe the solution you'd like
File-based apps in C# look really awesome. The part that sold me was the converter. I can take an application that is just all files and run dotnet project convert
on it, and now I have a .csproj file with my #:
stripped out when applicable. That's really nice.
However, it sounds like there's no option (yet) to tell the converter to also create a solution file. It would be nice to have a switch to do dotnet project convert app.cs --slnx
and now I also have a solution file, where I may want to add in a test project, or other projects for this solution. (And yes, I'm using .slnx explicitly because, really, who wants the old-and-busted .sln format anymore? :) But maybe the switch would be --slnx
or --sln
in case some really, really wants that style.)