Skip to content

Commit 4aba3c6

Browse files
committed
Switched to .slnx format
1 parent c5dbb64 commit 4aba3c6

File tree

8 files changed

+9
-40
lines changed

8 files changed

+9
-40
lines changed

.editorconfig

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ insert_final_newline = false
1616
[*.{json,xml,yml,htm,html,js,ts,css,scss,less}]
1717
indent_size = 2
1818

19-
[*.{*proj,resx,config,ruleset,cd,props,targets,nuspec}]
19+
[*.{*proj,slnx,resx,config,ruleset,cd,props,targets,nuspec}]
2020
end_of_line = crlf
2121
indent_size = 2
2222

@@ -27,10 +27,6 @@ end_of_line = crlf
2727
charset = latin1
2828
end_of_line = crlf
2929

30-
[*.sln]
31-
end_of_line = crlf
32-
indent_style = tab
33-
3430
[*.{md,resx,Designer.*}]
3531
trim_trailing_whitespace = false
3632

doc/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pushd $PSScriptRoot
33

44
function Run-DotNet {
5-
..\0install.ps1 run --batch --version 9.0.. https://apps.0install.net/dotnet/sdk.xml @args
5+
..\0install.ps1 run --batch --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml @args
66
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
77
}
88

doc/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd `dirname $0`
66
if command -v dotnet > /dev/null 2> /dev/null; then
77
dotnet="dotnet"
88
else
9-
dotnet="../0install.sh run --version 9.0.. https://apps.0install.net/dotnet/sdk.xml"
9+
dotnet="../0install.sh run --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml"
1010
fi
1111

1212
# Build docs

src/NanoByte.CodeGeneration.sln

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

src/NanoByte.CodeGeneration.slnx

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

src/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop"
33
pushd $PSScriptRoot
44

55
function Run-DotNet {
6-
..\0install.ps1 run --batch --version 9.0.. https://apps.0install.net/dotnet/sdk.xml @args
6+
..\0install.ps1 run --batch --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml @args
77
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
88
}
99

src/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd `dirname $0`
66
if command -v dotnet > /dev/null 2> /dev/null; then
77
dotnet="dotnet"
88
else
9-
dotnet="../0install.sh run --version 9.0.. https://apps.0install.net/dotnet/sdk.xml"
9+
dotnet="../0install.sh run --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml"
1010
fi
1111

1212
# Build

0 commit comments

Comments
 (0)