Skip to content

Commit f34fccc

Browse files
committed
Adjusted readmes to mention slnx instead of sln
1 parent e63466e commit f34fccc

7 files changed

Lines changed: 18 additions & 19 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*.suo
66
*.user
77
*.userosscache
8-
*.sln.docstates
8+
*.slnx.docstates
99

1010
# User-specific files (MonoDevelop/Xamarin Studio)
1111
*.userprefs
@@ -249,7 +249,7 @@ paket-files/
249249

250250
# JetBrains Rider
251251
.idea/
252-
*.sln.iml
252+
*.slnx.iml
253253

254254
**/out
255255

Sample/ECommerce/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,25 @@
55
## Prerequisities
66

77
1. Install git - https://git-scm.com/downloads.
8-
2. Install .NET Core 6.0 - https://dotnet.microsoft.com/en-us/download/dotnet/6.0.
8+
2. Install .NET 10 - https://dotnet.microsoft.com/en-us/download/dotnet/10.0.
99
3. Install Visual Studio 2019, Rider or VSCode.
1010
4. Install docker - https://docs.docker.com/docker-for-windows/install/.
1111
5. Make sure that you have ~10GB disk space.
1212
6. Create Github Account
1313
7. Clone Project https://github.com/oskardudycz/EventSourcing.NetCore, make sure that's compiling
14-
8. Go to gitter channel (ENG) https://gitter.im/EventSourcing-NetCore/community (POL) https://gitter.im/oskardudycz/szkola-event-sourcing.
15-
9. Check https://github.com/StackExchange/Dapper/, https://github.com/jbogard/MediatR, http://jasperfx.github.io/marten/documentation/
16-
10. Open `PracticalEventSourcing.sln` solution.
17-
11. Docker useful commands
14+
8. Check https://github.com/StackExchange/Dapper/, http://jasperfx.github.io/marten/documentation/
15+
9. Open `PracticalEventSourcing.slnx` solution.
16+
10. Docker useful commands
1817

1918
- `docker compose up` - start dockers
2019
- `docker compose kill` - to stop running dockers.
2120
- `docker compose down -v` - to clean stopped dockers.
2221
- `docker ps` - for showing running dockers
2322
- `docker ps -a` - to show all dockers (also stopped)
2423

25-
12. Go to [docker](./docker) and run: `docker compose up`.
26-
13. Wait until all dockers got are downloaded and running.
27-
14. You should automatically get:
24+
11. Go to [docker](./docker) and run: `docker compose up`.
25+
12. Wait until all dockers got are downloaded and running.
26+
13. You should automatically get:
2827
- Postgres DB running
2928
- PG Admin - IDE for postgres. Available at: http://localhost:5050.
3029
- Login: `pgadmin4@pgadmin.org`, Password: `admin`

Sample/EventStoreDB/ECommerce/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Sample is showing the typical flow of the Event Sourcing app with [EventStoreDB]
1010
2. Install .NET 6.0 - https://dotnet.microsoft.com/download/dotnet/6.0.
1111
3. Install Visual Studio 2022, Rider or VSCode.
1212
4. Install docker - https://docs.docker.com/engine/install/.
13-
5. Open `ECommerce.sln` solution.
13+
5. Open `ECommerce.slnx` solution.
1414

1515
## Running
1616

@@ -22,7 +22,7 @@ Sample is showing the typical flow of the Event Sourcing app with [EventStoreDB]
2222
- PG Admin - IDE for postgres. Available at: http://localhost:5050.
2323
- Login: `admin@pgadmin.org`, Password: `admin`
2424
- To connect to server Use host: `postgres`, user: `postgres`, password: `Password12!`
25-
4. Open, build and run `ECommerce.sln` solution.
25+
4. Open, build and run `ECommerce.slnx` solution.
2626
- Swagger should be available at: http://localhost:5000/index.html
2727

2828

Sample/EventStoreDB/Simple/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ API integration tests for:
5858
2. Install .NET 6.0 - https://dotnet.microsoft.com/download/dotnet/6.0.
5959
3. Install Visual Studio 2022, Rider or VSCode.
6060
4. Install docker - https://docs.docker.com/engine/install/.
61-
5. Open `ECommerce.sln` solution.
61+
5. Open `ECommerce.slnx` solution.
6262

6363
## Running
6464

@@ -70,5 +70,5 @@ API integration tests for:
7070
- PG Admin - IDE for postgres. Available at: http://localhost:5050.
7171
- Login: `admin@pgadmin.org`, Password: `admin`
7272
- To connect to server Use host: `postgres`, user: `postgres`, password: `Password12!`
73-
4. Open, build and run `ECommerce.sln` solution.
73+
4. Open, build and run `ECommerce.slnx` solution.
7474
- Swagger should be available at: http://localhost:5000/index.html

Sample/MeetingsManagement/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
6. Create Github Account
1313
7. Clone Project https://github.com/oskardudycz/EventSourcing.NetCore, make sure that's compiling
1414
8. Check https://github.com/jbogard/MediatR, http://jasperfx.github.io/marten/documentation/
15-
9. Open `MeetingsManagement.sln` solution.
15+
9. Open `MeetingsManagement.slnx` solution.
1616
10. Docker useful commands
1717

1818
- `docker compose up` - start dockers

Workshops/BuildYourOwnEventStore/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and read:
3636
7. Clone Project https://github.com/oskardudycz/EventSourcing.NetCore, make sure that's compiling
3737
8. Go to gitter channel https://gitter.im/oskardudycz/szkola-event-sourcing.
3838
9. Check https://github.com/StackExchange/Dapper/, https://github.com/jbogard/MediatR, http://jasperfx.github.io/marten/documentation/
39-
10. Open `BuildYourOwnEventStore.sln` solution.
39+
10. Open `BuildYourOwnEventStore.slnx` solution.
4040
11. Docker useful commands
4141

4242
- `docker compose up` - start dockers

Workshops/IntroductionToEventSourcing/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Read also more in my article [Introduction to Event Sourcing - Self Paced Kit](h
5454
3. Install .NET 8.0 - https://dotnet.microsoft.com/download/dotnet/8.0.
5555
4. Install Visual Studio, Rider or VSCode.
5656
5. Install docker - https://docs.docker.com/engine/install/.
57-
6. Open [Exercises.sln](./Exercises.sln) solution.
57+
6. Open [Exercises.slnx](./Exercises.slnx) solution.
5858

5959
## Running
6060

@@ -66,5 +66,5 @@ Read also more in my article [Introduction to Event Sourcing - Self Paced Kit](h
6666
- Login: `admin@pgadmin.org`, Password: `admin`
6767
- To connect to server click right mouse on Servers, then Register Server and use host: `postgres`, user: `postgres`, password: `Password12!`
6868
- EventStoreDB UI: http://localhost:2113/
69-
4. Open, build and run [Exercises.sln](./Exercises.sln) solution.
70-
4. To see solved exercises, open [Solved.sln](./Solved.sln) solution.
69+
4. Open, build and run [Exercises.slnx](./Exercises.slnx) solution.
70+
4. To see solved exercises, open [Solved.slnx](./Solved.slnx) solution.

0 commit comments

Comments
 (0)