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..fantomasignore - Configuration file for Fantomas F# code formatter..git-blame-ignore-revs - List of commits to ignore in git blame output, typically used for bulk formatting changes..gitattributes - Git attributes file for controlling line endings and diff behavior..github\ - Holds all [GitHub] related templates..gitignore - Good set of defaults for dotnet related repositories..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.Directory.Build.targets - Top level targets for project files. See Microsoft Docs for more info.Directory.Packages.props - Central package version management for NuGet packages. 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.slnx - Solution file for your repository. See Microsoft Docs for more info.NuGet.config - NuGet configuration file for package sources.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.src\ - Folder containing your repository's project files and code.tests\ - Folder containing tests running against your code in src.