Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. ```
  2. $/
  3. artifacts/
  4. build/
  5. docs/
  6. lib/
  7. packages/
  8. samples/
  9. src/
  10. tests/
  11. .editorconfig
  12. .gitignore
  13. .gitattributes
  14. build.cmd
  15. build.sh
  16. LICENSE
  17. NuGet.Config
  18. README.md
  19. {solution}.sln
  20. ```
  21.  
  22.  
  23. - `src` - Main projects (the product code)
  24. - `tests` - Test projects
  25. - `docs` - Documentation stuff, markdown files, help files etc.
  26. - `samples` (optional) - Sample projects
  27. - `lib` - Things that can **NEVER** exist in a nuget package
  28. - `artifacts` - Build outputs go here. Doing a build.cmd/build.sh generates artifacts here (nupkgs, dlls, pdbs, etc.)
  29. - `packages` - NuGet packages
  30. - `build` - Build customizations (custom msbuild files/psake/fake/albacore/etc) scripts
  31. - `build.cmd` - Bootstrap the build for windows
  32. - `build.sh` - Bootstrap the build for *nix
  33. - `global.json` - ASP.NET vNext only
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement