Closed yanjustino closed 2 years ago
Based on: https://gist.github.com/davidfowl/ed7564297c61fe9ab814
$/ artifacts/ build/ docs/ lib/ packages/ samples/ src/ tests/ .editorconfig .gitignore .gitattributes build.cmd build.sh LICENSE NuGet.Config README.md {solution}.sln
src
tests
docs
samples
lib
artifacts
packages
build
build.cmd
build.sh
global.json
[Oo]bj/ [Bb]in/ .nuget/ _ReSharper.* packages/ artifacts/ *.user *.suo *.userprefs *DS_Store *.sln.ide
There's probably more things that go in the ignore file.
test
Based on: https://gist.github.com/davidfowl/ed7564297c61fe9ab814
src
- Main projects (the product code)tests
- Test projectsdocs
- Documentation stuff, markdown files, help files etc.samples
(optional) - Sample projectslib
- Things that can NEVER exist in a nuget packageartifacts
- Build outputs go here. Doing a build.cmd/build.sh generates artifacts here (nupkgs, dlls, pdbs, etc.)packages
- NuGet packagesbuild
- Build customizations (custom msbuild files/psake/fake/albacore/etc) scriptsbuild.cmd
- Bootstrap the build for windowsbuild.sh
- Bootstrap the build for *nixglobal.json
- ASP.NET vNext only.gitignore
There's probably more things that go in the ignore file.
test
totests