As an architect, I want to generate the files needed by Visual Studio using a simpler set of files with a generator, so that the scope of project- and solution-level changes is reduced dramatically over time.
Expectation:
- rake will be used to generate relevant files
rake generate
rake vs_open ← depends on generate
rake watch
rake vs_edit ← depends on vs_open, watch
.gitignore will be updated to exclude *.csproj / *.sln; projects and solutions are deleted
- New, minimal file set:
solution.json ← solution / project / dependency metadata
generator.yml ← generator config options
As an architect, I want to generate the files needed by Visual Studio using a simpler set of files with a generator, so that the scope of project- and solution-level changes is reduced dramatically over time.
Expectation:
rake generaterake vs_open← depends ongeneraterake watchrake vs_edit← depends onvs_open,watch.gitignorewill be updated to exclude*.csproj/*.sln; projects and solutions are deletedsolution.json← solution / project / dependency metadatagenerator.yml← generator config options