🚚 Adds initial workspace and solution structure with recommended extensions

This commit is contained in:
Alexandros Kritikos 2025-03-19 02:25:05 +02:00
parent 7923ea5fe6
commit db86ffca34
No known key found for this signature in database
GPG Key ID: D68ED042B18F1740
2 changed files with 38 additions and 0 deletions

17
Sample.code-workspace Normal file
View File

@ -0,0 +1,17 @@
{
"folders": [
{
"path": ".",
"name": "Source"
}
],
"extensions": {
"recommendations": [
"EditorConfig.EditorConfig",
"mhutchie.git-graph",
"ms-dotnettools.csdevkit",
"ms-vscode-remote.remote-containers",
"seatonjiang.gitmoji-vscode",
]
}
}

21
Sample.slnx Normal file
View File

@ -0,0 +1,21 @@
<Solution>
<Folder Name="/assets/">
<File Path="LICENSE.md" />
<File Path="README.md" />
</Folder>
<Folder Name="/config/">
<File Path=".editorconfig" />
<File Path=".gitignore" />
<File Path=".globalconfig" />
<File Path=".runsettings" />
<File Path="Directory.Build.props" />
<File Path="Directory.Build.targets" />
<File Path="Directory.Packages.props" />
<File Path="dotnet.ruleset" />
<File Path="xunit.runner.json" />
<File Path="GitVersion.yml" />
</Folder>
<Folder Name="/samples/" />
<Folder Name="/src/" />
<Folder Name="/tests/" />
</Solution>