When you do an initial scaffold, your folder will be filled with this set of files. We'll go one by one and talk about what they're and additional references for them.
|
.config\dotnet-tools.json
- Holds dotnet tools manifest..devcontainer\
- Holds all files necessary for VSCode Dev Container feature..editorconfig
- EditorConfig..github\
- Holds all [GitHub] related templates..gitignore
- Good set of defaults for dotnet related repositories..paket\Paket.Restore.targets
- Needed for paket to interact with MSBuild. See paket..vscode\extensions.json
- File containing all recommended VSCode plugins for this repository..vscode\settings.json
- File containing all VSCode settings for this repository.Directory.Build.props
- Top level configuration for project files. See Microsoft Docs for more info.LICENSE.md
- Your repositories license. Starts with MIT. Choose a license if you're looking for more choices.MyCoolNewLib.sln
- Solution file for your repository. See Microsoft Docs for more info.README.md
- The text file that introduces and explains a project.CHANGELOG.md
- The text file containing versioning, date, and release notes.build.cmd
- Windows specific entry point for building the repository.build.sh
- Nix specific entry point for building the repository.build\
- Build script for building the repository. See FAKE Docs for more info.docsSrc\
- Contains the source files for your GitHub documentation.docsTool\
- Contains the tool for generating your GitHub documentation.paket.dependencies
- File containing your repositories dependencies. See Paket Docs for more info.paket.lock
- File containing the full dependency graph of your repository. See Paket Docs for more info.src\
- Folder containing your repository's project files and code.tests\
- Folder containing tests running against your code in src
.