Skip to content

Commit c98d9ab

Browse files
committed
Updates solution file extension to .slnx
Updates the solution file extension from `.sln` to `.slnx` in the workflow configuration and documentation. This ensures the correct solution file is used for building the projects.
1 parent e235fee commit c98d9ab

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/all-guides-sln.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- '.github/workflows/all-guides-sln.yml'
1515

1616
env:
17-
SLN_FILEPATH : ${{github.workspace}}/DotNet.Guides.sln
17+
SLN_FILEPATH : ${{github.workspace}}/DotNet.Guides.slnx
1818

1919
jobs:
2020
build:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ This repo contains guides for developing apps using .NET SDK. These guides are a
2222

2323
### Using Visual Studio
2424

25-
1) Clone the repo and open the `DotNet.Guides.sln` solution file.
25+
1) Clone the repo and open the `DotNet.Guides.slnx` solution file.
2626
2) Press build on Visual Studio.
2727

2828
### Using dotnet CLI
2929

3030
1) Clone the repo and browse to the directory using your favorite shell.
31-
2) To build the solution that contains all guides run: **`dotnet build DotNet.Guides.sln`**
31+
2) To build the solution that contains all guides run: **`dotnet build DotNet.Guides.slnx`**
3232

3333
### Notes
3434

35-
There are also individual solutions for each of the demo apps for the guides present at the folder level for the demo. Example: `AmbientDataDemo.sln` at `src/guides/ambient-data/AmbientDataDemo`.
35+
There are also individual solutions for each of the demo apps for the guides present at the folder level for the demo. Example: `AmbientDataDemo.slnx` at `src/guides/ambient-data/AmbientDataDemo`.
3636

3737
## License
3838

src/guides/ambient-data/AmbientDataDemo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This app is an ASP.NET web api that shows how to use `AsyncLocal<T>` to share am
66

77
## How to run
88

9-
* Open the `AmbientDataDemo.sln` which can be found at `src/guides/ambient-data/AmbientDataDemo`.
9+
* Open the `AmbientDataDemo.slnx` which can be found at `src/guides/ambient-data/AmbientDataDemo`.
1010
* From Visual Studio, set the `AmbientDataDemo` project as the Startup Project.
1111
* Run the project.
1212
* The browser should open on the swagger page at https://localhost:5001/swagger/index.html.

src/guides/generic-host/GenericHostDemos/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This app is a console app that shows how to make use of the generic host to prov
88

99
### How to run - ConsoleAppWithGenericHost
1010

11-
* Open the `GenericHostDemos.sln` which can be found at `src/guides/generic-host/GenericHostDemos`.
11+
* Open the `GenericHostDemos.slnx` which can be found at `src/guides/generic-host/GenericHostDemos`.
1212
* From Visual Studio, set the `ConsoleAppWithGenericHost` project as the Startup Project.
1313
* Run the project.
1414

@@ -20,7 +20,7 @@ This app is a console app that shows how to make use of the generic host to prov
2020

2121
### How to run - ConsoleAppWithGenericHost2
2222

23-
* Open the `GenericHostDemos.sln` which can be found at `src/guides/generic-host/GenericHostDemos`.
23+
* Open the `GenericHostDemos.slnx` which can be found at `src/guides/generic-host/GenericHostDemos`.
2424
* From Visual Studio, set the `ConsoleAppWithGenericHost2` project as the Startup Project.
2525
* Run the project.
2626

@@ -30,7 +30,7 @@ This app is an AWS Lambda created with the template for an empty function. The t
3030

3131
### How to run - AWSLambdaWithGenericHost
3232

33-
* Open the `GenericHostDemos.sln` which can be found at `src/guides/generic-host/GenericHostDemos`.
33+
* Open the `GenericHostDemos.slnx` which can be found at `src/guides/generic-host/GenericHostDemos`.
3434
* From Visual Studio, set the `AWSLambdaWithGenericHost` project as the Startup Project.
3535
* Run the project.
3636

@@ -42,7 +42,7 @@ This app is an AWS Lambda created with the template for an empty function. The t
4242

4343
### How to run - AWSLambdaWithGenericHost2
4444

45-
* Open the `GenericHostDemos.sln` which can be found at `src/guides/generic-host/GenericHostDemos`.
45+
* Open the `GenericHostDemos.slnx` which can be found at `src/guides/generic-host/GenericHostDemos`.
4646
* From Visual Studio, set the `AWSLambdaWithGenericHost2` project as the Startup Project.
4747
* Run the project.
4848

src/guides/serilog/TestingLogsWithSerilog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This app is an ASP.NET web api and a test project that shows how to use [MELT](h
66

77
## How to run
88

9-
* Open the `TestingLogsWithSerilog.sln` which can be found at `src/guides/serilog/TestingLogsWithSerilog`.
9+
* Open the `TestingLogsWithSerilog.slnx` which can be found at `src/guides/serilog/TestingLogsWithSerilog`.
1010
* Run the tests. Both tests should pass.
1111

1212
## Notes

0 commit comments

Comments
 (0)