Skip to content

Commit 229d774

Browse files
committed
Updates solution to use .slnx format
Migrates the solution file from the old .sln format to the new .slnx format. This improves solution loading times and organization within Visual Studio.
1 parent abf2134 commit 229d774

File tree

3 files changed

+24
-83
lines changed

3 files changed

+24
-83
lines changed

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"args": [
1313
"build",
14-
"${workspaceFolder}/Foundatio.Repositories.sln",
14+
"${workspaceFolder}/Foundatio.Repositories.slnx",
1515
"/p:GenerateFullPaths=true"
1616
],
1717
"problemMatcher": "$msCompile"
@@ -47,7 +47,7 @@
4747
"problemMatcher": "$msCompile"
4848
},
4949
{
50-
"label": "pack",
50+
"label": "pack",
5151
"command": "dotnet pack -c Release -o ${workspaceFolder}/artifacts",
5252
"type": "shell",
5353
"problemMatcher": []

Foundatio.Repositories.sln

Lines changed: 0 additions & 81 deletions
This file was deleted.

Foundatio.Repositories.slnx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Solution>
2+
<Folder Name="/Samples/">
3+
<Project Path="samples/Foundatio.SampleApp/Client/Foundatio.SampleApp.Client.csproj" />
4+
<Project Path="samples/Foundatio.SampleApp/Server/Foundatio.SampleApp.Server.csproj" />
5+
<Project Path="samples/Foundatio.SampleApp/Shared/Foundatio.SampleApp.Shared.csproj" />
6+
</Folder>
7+
<Folder Name="/Solution Items/">
8+
<File Path=".editorconfig" />
9+
<File Path=".github/workflows/build.yml" />
10+
<File Path="build/common.props" />
11+
<File Path="docker-compose.yml" />
12+
<File Path="global.json" />
13+
<File Path="NuGet.config" />
14+
<File Path="README.md" />
15+
<File Path="src/Directory.Build.props" />
16+
<File Path="tests/Directory.Build.props" />
17+
</Folder>
18+
<Project Path="src/Foundatio.Repositories.Elasticsearch/Foundatio.Repositories.Elasticsearch.csproj" />
19+
<Project Path="src/Foundatio.Repositories/Foundatio.Repositories.csproj" />
20+
<Project Path="tests/Foundatio.Repositories.Elasticsearch.Tests/Foundatio.Repositories.Elasticsearch.Tests.csproj" />
21+
<Project Path="tests/Foundatio.Repositories.Tests/Foundatio.Repositories.Tests.csproj" />
22+
</Solution>

0 commit comments

Comments
 (0)