Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ indent_size = 4
insert_final_newline = false
trim_trailing_whitespace = true

[*.sln]
[*.slnx]
indent_style = tab

[*.{csproj,vbproj,vcxproj,vcxproj.filters}]
Expand Down
22 changes: 0 additions & 22 deletions BuslyCLI.sln

This file was deleted.

4 changes: 4 additions & 0 deletions BuslyCLI.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<Solution>
<Project Path="src/BuslyCLI.Console/BuslyCLI.Console.csproj" />
<Project Path="tests/BuslyCLI.Console.Tests/BuslyCLI.Console.Tests.csproj" />
</Solution>
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var srcDirectory = "./src";
var consoleCsproj = $"{srcDirectory}/BuslyCLI.Console/BuslyCLI.Console.csproj";
var testsDirectory = "./tests";
var artifactsDirectory = "./artifacts";
var solution = $"./BuslyCLI.sln";
var solution = $"./BuslyCLI.slnx";

//////////////////////////////////////////////////////////////////////
// TASKS
Expand Down