Skip to content

Commit db8532e

Browse files
committed
ci: replace slnx with sln file
Signed-off-by: Kenny Pflug <[email protected]>
1 parent 8361c1d commit db8532e

File tree

3 files changed

+72
-23
lines changed

3 files changed

+72
-23
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- name: Cache NuGet packages
2020
uses: ./.github/actions/cache-nuget
2121
- name: Restore dependencies
22-
run: dotnet restore ./Light.ExtendedPath.slnx /p:ContinuousIntegrationBuild=true
22+
run: dotnet restore ./Light.ExtendedPath.sln /p:ContinuousIntegrationBuild=true
2323
- name: Build
24-
run: dotnet build ./Light.ExtendedPath.slnx --configuration Release --no-restore /p:ContinuousIntegrationBuild=true
24+
run: dotnet build ./Light.ExtendedPath.sln --configuration Release --no-restore /p:ContinuousIntegrationBuild=true
2525
- name: Test
26-
run: dotnet test ./Light.ExtendedPath.slnx --configuration Release --no-build --verbosity normal
26+
run: dotnet test ./Light.ExtendedPath.sln --configuration Release --no-build --verbosity normal

Light.ExtendedPath.sln

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{8BB81D4B-D06F-4518-9EE0-E1F808D0E9AA}"
7+
ProjectSection(SolutionItems) = preProject
8+
src\Directory.Build.props = src\Directory.Build.props
9+
EndProjectSection
10+
EndProject
11+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.ExtendedPath", "src\Light.ExtendedPath\Light.ExtendedPath.csproj", "{02923F8D-0E66-4F13-850C-C82BBB42841F}"
12+
EndProject
13+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{3859B339-3828-4410-AB1C-7A2C397AEF51}"
14+
ProjectSection(SolutionItems) = preProject
15+
tests\Directory.Build.props = tests\Directory.Build.props
16+
EndProjectSection
17+
EndProject
18+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.ExtendedPath.Tests", "tests\Light.ExtendedPath.Tests\Light.ExtendedPath.Tests.csproj", "{BE7B750E-E589-4D13-AE80-C7100B42AF10}"
19+
EndProject
20+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution-items", "solution-items", "{8F7FB89C-DA3F-44BC-9B45-F90C7E02FA61}"
21+
ProjectSection(SolutionItems) = preProject
22+
global.json = global.json
23+
Light.ExtendedPath.sln.DotSettings = Light.ExtendedPath.sln.DotSettings
24+
Directory.Packages.props = Directory.Packages.props
25+
Directory.Build.props = Directory.Build.props
26+
readme.md = readme.md
27+
LICENSE = LICENSE
28+
EndProjectSection
29+
EndProject
30+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{81B514E1-692E-4C51-8BF1-0C4087A1FBD6}"
31+
EndProject
32+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{FD54C45A-A8F7-4EB2-909B-2110654056F8}"
33+
ProjectSection(SolutionItems) = preProject
34+
.github\workflows\build-and-test.yml = .github\workflows\build-and-test.yml
35+
EndProjectSection
36+
EndProject
37+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "actions", "actions", "{C9E338ED-89A1-402C-95D9-3E004C68222F}"
38+
EndProject
39+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "cache-nuget", "cache-nuget", "{F8FCDD49-EE92-4E58-A4B2-CDFAE70ED529}"
40+
ProjectSection(SolutionItems) = preProject
41+
.github\actions\cache-nuget\action.yml = .github\actions\cache-nuget\action.yml
42+
EndProjectSection
43+
EndProject
44+
Global
45+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
46+
Debug|Any CPU = Debug|Any CPU
47+
Release|Any CPU = Release|Any CPU
48+
EndGlobalSection
49+
GlobalSection(SolutionProperties) = preSolution
50+
HideSolutionNode = FALSE
51+
EndGlobalSection
52+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
53+
{02923F8D-0E66-4F13-850C-C82BBB42841F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{02923F8D-0E66-4F13-850C-C82BBB42841F}.Debug|Any CPU.Build.0 = Debug|Any CPU
55+
{02923F8D-0E66-4F13-850C-C82BBB42841F}.Release|Any CPU.ActiveCfg = Release|Any CPU
56+
{02923F8D-0E66-4F13-850C-C82BBB42841F}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{BE7B750E-E589-4D13-AE80-C7100B42AF10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58+
{BE7B750E-E589-4D13-AE80-C7100B42AF10}.Debug|Any CPU.Build.0 = Debug|Any CPU
59+
{BE7B750E-E589-4D13-AE80-C7100B42AF10}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{BE7B750E-E589-4D13-AE80-C7100B42AF10}.Release|Any CPU.Build.0 = Release|Any CPU
61+
EndGlobalSection
62+
GlobalSection(NestedProjects) = preSolution
63+
{02923F8D-0E66-4F13-850C-C82BBB42841F} = {8BB81D4B-D06F-4518-9EE0-E1F808D0E9AA}
64+
{BE7B750E-E589-4D13-AE80-C7100B42AF10} = {3859B339-3828-4410-AB1C-7A2C397AEF51}
65+
{FD54C45A-A8F7-4EB2-909B-2110654056F8} = {81B514E1-692E-4C51-8BF1-0C4087A1FBD6}
66+
{C9E338ED-89A1-402C-95D9-3E004C68222F} = {81B514E1-692E-4C51-8BF1-0C4087A1FBD6}
67+
{F8FCDD49-EE92-4E58-A4B2-CDFAE70ED529} = {C9E338ED-89A1-402C-95D9-3E004C68222F}
68+
EndGlobalSection
69+
EndGlobal

Light.ExtendedPath.slnx

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

0 commit comments

Comments
 (0)