.NET 開発ツリーをどのようにセットアップしますか? 次のような構造を使用します。
-projectname
--config (where I put the configuration files)
--doc (where I put all the document concerning the project: e-mails, documentation)
--tools (all the tools I use: Nunit, Moq)
--lib (all the libraries used by the solution: ninject or autofac)
--src
---app (sourcefiles)
---test (unittests)
solutionfile.sln
build.csproj
記号「-」はディレクトリを示します。
このような構造をうまく構築することは非常に重要だと思います。ソース管理システムからソース コードを取得し、Visual Studio を開いたり、サード パーティのライブラリをインストールしたりしなくても、ソリューションをビルドできるはずです。
これについて何か考えはありますか?