Skip to content

Commit 2a21533

Browse files
authored
Merge pull request #161 from dorssel/slnx
Migrate to XML Solution
2 parents 6626fb4 + 4298674 commit 2a21533

File tree

5 files changed

+40
-106
lines changed

5 files changed

+40
-106
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ charset = utf-8-bom
176176
indent_size = unset
177177

178178
# Maintained by Visual Studio
179-
[*.sln]
180-
indent_style = tab
179+
[*.slnx]
180+
indent_size = 2
181181

182182
# Maintained by Visual Studio
183183
[*.{pubxml,wixproj}]

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*.yml text
2020
*.config text
2121

22-
*.sln text
22+
*.slnx text
2323
*.csproj text
2424
*.cs text eol=crlf
2525
*.props text

dotnet-xmss.sln

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

dotnet-xmss.sln.license

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

dotnet-xmss.slnx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2025 Frans van Dorsselaer
3+
4+
SPDX-License-Identifier: MIT
5+
-->
6+
<Solution>
7+
<Folder Name="/Examples/">
8+
<File Path="Examples/Directory.Build.props" />
9+
<File Path="Examples/Directory.Build.targets" />
10+
<Project Path="Examples/ConsoleApp/ConsoleApp.csproj" />
11+
<Project Path="Examples/WebAssembly/WebAssembly.csproj" />
12+
</Folder>
13+
<Folder Name="/Solution Items/">
14+
<File Path=".config/dotnet-tools.json" />
15+
<File Path=".editorconfig" />
16+
<File Path=".gitattributes" />
17+
<File Path=".gitignore" />
18+
<File Path="Directory.Build.props" />
19+
<File Path="Directory.Packages.props" />
20+
<File Path="GitVersion.yml" />
21+
<File Path="global.json" />
22+
<File Path="libc/libc.c" />
23+
<File Path="README.md" />
24+
</Folder>
25+
<Folder Name="/UnitTests/">
26+
<File Path="UnitTests/Directory.Build.props" />
27+
<Project Path="UnitTests/Internal.UnitTests/Internal.UnitTests.csproj" />
28+
<Project Path="UnitTests/NativeHelper.UnitTests/NativeHelper.UnitTests.csproj" />
29+
<Project Path="UnitTests/UnitTests/UnitTests.csproj" />
30+
</Folder>
31+
<Project Path="Documentation/Documentation.csproj">
32+
<BuildDependency Project="Xmss/Xmss.csproj" />
33+
<Build Project="false" />
34+
</Project>
35+
<Project Path="NativeHelper/NativeHelper.csproj" />
36+
<Project Path="Xmss/Xmss.csproj" />
37+
</Solution>

0 commit comments

Comments
 (0)