Skip to content

Commit 9e06b6c

Browse files
committed
Post-merge: replace links to main branches
1 parent b5d59c3 commit 9e06b6c

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

Configuration/src/ConfigurationProviders/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is an ASP.NET Core application that shows how to use various `IConfiguratio
1515

1616
## Running locally
1717

18-
1. Start a Config Server [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
18+
1. Start a Config Server [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
1919
1. Run the sample
2020
```shell
2121
dotnet run
@@ -25,7 +25,7 @@ This is an ASP.NET Core application that shows how to use various `IConfiguratio
2525

2626
### Config Server deployment
2727

28-
Refer to [common tasks](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md#provision-sccs-on-cloud-foundry)
28+
Refer to [common tasks](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md#provision-sccs-on-cloud-foundry)
2929
for detailed instructions on creating a Spring Cloud Config Server instance in Cloud Foundry.
3030
This sample expects the config server to be backed by the `spring-cloud-samples` repo.
3131

Connectors/src/MongoDb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for connecting to a MongoDB database.
1515

1616
## Running locally
1717

18-
1. Start a MongoDB [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
18+
1. Start a MongoDB [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
1919
1. Run the sample
2020
```shell
2121
dotnet run

Connectors/src/MySql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ There is also an additional sample that illustrates how to use Entity Framework
2222

2323
## Running locally
2424

25-
1. Start a MySQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
25+
1. Start a MySQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2626
1. Run the sample
2727
```shell
2828
dotnet run

Connectors/src/MySqlEFCore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There is also an additional sample that illustrates how to use a `MySqlConnectio
2121

2222
## Running locally
2323

24-
1. Start a MySQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
24+
1. Start a MySQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2525
1. Run the sample
2626
```shell
2727
dotnet run

Connectors/src/PostgreSql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ There is also an additional sample that illustrates how to use Entity Framework
2222

2323
## Running locally
2424

25-
1. Start a PostgreSQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
25+
1. Start a PostgreSQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2626
1. Run the sample
2727
```shell
2828
dotnet run

Connectors/src/PostgreSqlEFCore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There is also an additional sample that illustrates how to use a `NpgsqlConnecti
2121

2222
## Running locally
2323

24-
1. Start a PostgreSQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
24+
1. Start a PostgreSQL [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2525
1. Run the sample
2626
```shell
2727
dotnet run

Connectors/src/RabbitMQ/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This sample illustrates using an `IConnection` to send and receive messages on t
1616

1717
## Running locally
1818

19-
1. Start a RabbitMQ [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
19+
1. Start a RabbitMQ [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2020
1. Run the sample
2121
```shell
2222
dotnet run

Connectors/src/Redis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This sample uses [StackExchange.Redis](https://www.nuget.org/packages/StackExcha
2626
2727
## Running locally
2828

29-
1. Start a Redis or Valkey [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
29+
1. Start a Redis or Valkey [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
3030
1. Run the sample
3131
```shell
3232
dotnet run

Connectors/src/SqlServerEFCore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ for connecting to a Microsoft SQL Server database.
1717

1818
## Running locally
1919

20-
1. Use LocalDB or start a SQL Server [docker container](https://github.com/SteeltoeOSS/Samples/blob/main/CommonTasks.md)
20+
1. Use LocalDB or start a SQL Server [docker container](https://github.com/SteeltoeOSS/Samples/blob/4.x/CommonTasks.md)
2121
- When using docker, update your connection string in `appsettings.Development.json` accordingly
2222
1. Run the sample
2323
```shell

Discovery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Steeltoe Discovery Sample Applications
22

3-
This repo tree contains sample apps illustrating how to use the [Steeltoe Discovery](https://github.com/SteeltoeOSS/Steeltoe/tree/main/src/Discovery) packages.
3+
This repo tree contains sample apps illustrating how to use the [Steeltoe Discovery](https://github.com/SteeltoeOSS/Steeltoe/tree/4.x/src/Discovery) packages.
44

55
* src/FortuneTeller - ASP.NET microservice with MVC app, illustrating how to register and consume services using .NET configuration, Consul and Eureka.
66

0 commit comments

Comments
 (0)