Skip to content

Commit 0526621

Browse files
committed
Convert all solution files to .slnx format
Not renaming the `.sln.DotSettings` file, because JetBrains tools seem to prefer it for team-wide settings even with `.slnx` solution files.
1 parent dc51147 commit 0526621

File tree

6 files changed

+31
-110
lines changed

6 files changed

+31
-110
lines changed

Castle.Core.sln

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

Castle.Core.slnx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Solution>
2+
<Folder Name="/Castle Build/">
3+
<File Path=".editorconfig" />
4+
<File Path=".gitattributes" />
5+
<File Path=".gitignore" />
6+
<File Path="appveyor.yml" />
7+
<File Path="build.cmd" />
8+
<File Path="build.sh" />
9+
<File Path="buildscripts/common.props" />
10+
<File Path="CHANGELOG.md" />
11+
<File Path="CONTRIBUTING.md" />
12+
<File Path="LICENSE" />
13+
<File Path="README.md" />
14+
</Folder>
15+
<Folder Name="/Castle Build/GitHub Actions/">
16+
<File Path=".github/workflows/build.yml" />
17+
</Folder>
18+
<Folder Name="/Castle Services/">
19+
<Project Path="src/Castle.Services.Logging.log4netIntegration/Castle.Services.Logging.log4netIntegration.csproj" />
20+
<Project Path="src/Castle.Services.Logging.NLogIntegration/Castle.Services.Logging.NLogIntegration.csproj" />
21+
<Project Path="src/Castle.Services.Logging.SerilogIntegration/Castle.Services.Logging.SerilogIntegration.csproj" />
22+
</Folder>
23+
<Project Path="src/Castle.Core.Tests.WeakNamed/Castle.Core.Tests.WeakNamed.csproj" />
24+
<Project Path="src/Castle.Core.Tests/Castle.Core.Tests.csproj" />
25+
<Project Path="src/Castle.Core/Castle.Core.csproj" />
26+
</Solution>

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ echo ---------------------------
2121
echo Build
2222
echo ---------------------------
2323

24-
dotnet build ./Castle.Core.sln --configuration Release --tl:off
24+
dotnet build ./Castle.Core.slnx --configuration Release --tl:off
2525

2626
echo ---------------------------
2727
echo Running NET8.0 Tests

buildscripts/build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SET Configuration=Release
2626
GOTO build
2727

2828
:build
29-
dotnet build ./tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.sln
29+
dotnet build ./tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.slnx
3030
dotnet build --configuration %Configuration% || exit /b 1
3131
.\tools\Explicit.NuGet.Versions\build\nev.exe ".\build" "castle."
3232
GOTO test

tools/Explicit.NuGet.Versions/Explicit.NuGet.Versions.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Solution>
2+
<Project Path="Explicit.NuGet.Versions.csproj" />
3+
</Solution>

0 commit comments

Comments
 (0)