Skip to content

Commit d2dd098

Browse files
authored
Merge pull request #156 from TraGicCode/chore/migrate-to-slnx
Migrate to .Slnx
2 parents 72b7db7 + cbf4e0e commit d2dd098

File tree

4 files changed

+6
-24
lines changed

4 files changed

+6
-24
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ indent_size = 4
99
insert_final_newline = false
1010
trim_trailing_whitespace = true
1111

12-
[*.sln]
12+
[*.slnx]
1313
indent_style = tab
1414

1515
[*.{csproj,vbproj,vcxproj,vcxproj.filters}]

BuslyCLI.sln

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

BuslyCLI.slnx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<Solution>
2+
<Project Path="src/BuslyCLI.Console/BuslyCLI.Console.csproj" />
3+
<Project Path="tests/BuslyCLI.Console.Tests/BuslyCLI.Console.Tests.csproj" />
4+
</Solution>

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var srcDirectory = "./src";
66
var consoleCsproj = $"{srcDirectory}/BuslyCLI.Console/BuslyCLI.Console.csproj";
77
var testsDirectory = "./tests";
88
var artifactsDirectory = "./artifacts";
9-
var solution = $"./BuslyCLI.sln";
9+
var solution = $"./BuslyCLI.slnx";
1010

1111
//////////////////////////////////////////////////////////////////////
1212
// TASKS

0 commit comments

Comments
 (0)