https://github.com/akasarto/vs-solution-layout
A template layout for new .NET Solutions using Visual Studio 2022 Community or greater. Includes only commonly used folders and configuration files.
https://github.com/akasarto/vs-solution-layout
layout template visual-studio
Last synced: over 1 year ago
JSON representation
A template layout for new .NET Solutions using Visual Studio 2022 Community or greater. Includes only commonly used folders and configuration files.
- Host: GitHub
- URL: https://github.com/akasarto/vs-solution-layout
- Owner: akasarto
- License: unlicense
- Created: 2022-06-19T12:16:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-19T19:18:09.000Z (about 4 years ago)
- Last Synced: 2024-10-24T04:29:06.203Z (over 1 year ago)
- Topics: layout, template, visual-studio
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
A template layout for new .NET Solutions using Visual Studio 2022 Community or greater. Includes only commonly used folders and configuration files.
This template was inspired by David Fowler's [gist](https://gist.github.com/davidfowl/ed7564297c61fe9ab814) and can be adjusted as needed.
# How to Use
- Click on the 'Use this template' button.
- Provide your new repository information and settings.
- Update the existing `LICENSE` with your own.
- Delete folders and files you may not need.
- Rename the `Layout.sln` as needed.
- Update this readme file.
## Extras
Starting from .NET 5, it is possible to create a `.cs` file in your projects that will hold global `using` statements. E.g.:
File: `Usings.cs`
```csharp
global using System.Buffers.Binary;
global using System.Runtime.CompilerServices;
global using System.Runtime.InteropServices;
global using System.Text;
```