Skip to content

Commit

Permalink
Update package prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jabellard committed Jul 15, 2024
1 parent 41ecd63 commit 8100dce
Show file tree
Hide file tree
Showing 101 changed files with 159 additions and 159 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Before starting, ensure the following prerequisites are met:
- The **Sable** .NET tool is installed by running the following command:

```bash
dotnet tool install -g BloombergLP.Sable.Cli
dotnet tool install -g Sable.Cli
```

See [.NET tools](https://learn.microsoft.com/en-us/dotnet/core/tools/global-tools) to learn more about how .NET tools work.
Expand All @@ -48,7 +48,7 @@ dotnet new webapi
- Configure Marten along with its command line tooling support.
- Add **Sable** integration support to the project:
```bash
dotnet add package BloombergLP.Sable
dotnet add package Sable
```

Now for the fun part. Replace whatever overload of `AddMarten` you're using with `AddMartenWithSableSupport`. That's all it takes to complete the integration.
Expand All @@ -57,8 +57,8 @@ At this point, you should have a configuration that looks something like this:
```c#
using Marten;
using Oakton;
using BloombergLP.Sable.Extensions;
using BloombergLP.Sable.Samples.Core;
using Sable.Extensions;
using Sable.Samples.Core;
using Weasel.Core;

var builder = WebApplication.CreateBuilder(args);
Expand Down
16 changes: 8 additions & 8 deletions Sable.sln
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{0555
.github\release-drafter.yml = .github\release-drafter.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BloombergLP.Sable", "src\BloombergLP.Sable\BloombergLP.Sable.csproj", "{FF1F5A44-8B89-4316-AD77-E1C56CF0655E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sable", "src\Sable\Sable.csproj", "{FF1F5A44-8B89-4316-AD77-E1C56CF0655E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{EFE1E5ED-D337-4874-82EC-D9FA0BC7D3AB}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -61,21 +61,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
.github\workflows\release-drafter.yml = .github\workflows\release-drafter.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Cli", "src\BloombergLP.Sable.Cli\BloombergLP.Sable.Cli.csproj", "{5AFD0604-B5BD-4E96-98E1-9ADC13069BCC}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Cli", "src\Sable.Cli\Sable.Cli.csproj", "{5AFD0604-B5BD-4E96-98E1-9ADC13069BCC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{5934E500-E691-4C28-A8A5-119E9786F2AE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Samples.Core", "samples\BloombergLP.Sable.Samples.Core\BloombergLP.Sable.Samples.Core.csproj", "{0E11EECD-333F-4FB5-A9C1-D4D71223C96D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Samples.Core", "samples\Sable.Samples.Core\Sable.Samples.Core.csproj", "{0E11EECD-333F-4FB5-A9C1-D4D71223C96D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Samples.GettingStarted", "samples\BloombergLP.Sable.Samples.GettingStarted\BloombergLP.Sable.Samples.GettingStarted.csproj", "{35170F5E-7773-4C94-A297-D0DC4E92A9CA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Samples.GettingStarted", "samples\Sable.Samples.GettingStarted\Sable.Samples.GettingStarted.csproj", "{35170F5E-7773-4C94-A297-D0DC4E92A9CA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Samples.MultipleDatabases", "samples\BloombergLP.Sable.Samples.MultipleDatabases\BloombergLP.Sable.Samples.MultipleDatabases.csproj", "{0741B165-9DFA-49EB-B91C-7DECD6584B7A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Samples.MultipleDatabases", "samples\Sable.Samples.MultipleDatabases\Sable.Samples.MultipleDatabases.csproj", "{0741B165-9DFA-49EB-B91C-7DECD6584B7A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Samples.MultiTenancy", "samples\BloombergLP.Sable.Samples.MultiTenancy\BloombergLP.Sable.Samples.MultiTenancy.csproj", "{1DB49A91-FA54-4534-9B63-312DC30F98B7}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Samples.MultiTenancy", "samples\Sable.Samples.MultiTenancy\Sable.Samples.MultiTenancy.csproj", "{1DB49A91-FA54-4534-9B63-312DC30F98B7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Cli.Tests", "tests\BloombergLP.Sable.Cli.Tests\BloombergLP.Sable.Cli.Tests.csproj", "{03FA826C-6DF3-465F-A1BE-83BA55156F74}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Cli.Tests", "tests\Sable.Cli.Tests\Sable.Cli.Tests.csproj", "{03FA826C-6DF3-465F-A1BE-83BA55156F74}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloombergLP.Sable.Tests", "tests\BloombergLP.Sable.Tests\BloombergLP.Sable.Tests.csproj", "{65E71BD0-E5CD-42A2-959D-B5D74A655AF8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sable.Tests", "tests\Sable.Tests\Sable.Tests.csproj", "{65E71BD0-E5CD-42A2-959D-B5D74A655AF8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
4 changes: 2 additions & 2 deletions _docs/guide/existing-project-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Once those prerequisites are met, you're all set to go.
```c#
using Marten;
using Oakton;
using BloombergLP.Sable.Extensions;
using BloombergLP.Sable.Samples.Core;
using Sable.Extensions;
using Sable.Samples.Core;
using Weasel.Core;

var builder = WebApplication.CreateBuilder(args);
Expand Down
4 changes: 2 additions & 2 deletions _docs/guide/multi-tenancy-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ still applies for any single database setup with multi-tenancy configured. As su
```c#
using Marten;
using Oakton;
using BloombergLP.Sable.Extensions;
using BloombergLP.Sable.Samples.Core;
using Sable.Extensions;
using Sable.Samples.Core;
using Weasel.Core;

var builder = WebApplication.CreateBuilder(args);
Expand Down
4 changes: 2 additions & 2 deletions _docs/guide/multiple-database-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ It's pretty simple. Sable will just maintain migrations in separate directories
```c#
using Marten;
using Oakton;
using BloombergLP.Sable.Extensions;
using BloombergLP.Sable.Samples.Core;
using Sable.Extensions;
using Sable.Samples.Core;
using Weasel.Core;

var builder = WebApplication.CreateBuilder(args);
Expand Down
8 changes: 4 additions & 4 deletions _docs/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Before starting, ensure the following prerequisites are met:
- The **Sable** dotnet tool is installed by running the following command:

```bash
dotnet tool install -g BloombergLP.Sable.Cli
dotnet tool install -g Sable.Cli
```

See [.NET Tools](https://learn.microsoft.com/en-us/dotnet/core/tools/global-tools) to learn more about how .NET tools work.
Expand All @@ -28,7 +28,7 @@ dotnet new webapi
- Configure marten along with its command line tooling support.
- Add **Sable** integration support to the project:
```bash
dotnet add package BloombergLP.Sable
dotnet add package Sable
```

Now the fun part. Replace whatever overload of `AddMarten` you're using with `AddMartenWithSableSupport`. That's all there is to it for the integration.
Expand All @@ -37,8 +37,8 @@ At this point, you should have a configuration that looks something like this:
```c#
using Marten;
using Oakton;
using BloombergLP.Sable.Extensions;
using BloombergLP.Sable.Samples.Core;
using Sable.Extensions;
using Sable.Samples.Core;
using Weasel.Core;

var builder = WebApplication.CreateBuilder(args);
Expand Down
Loading

0 comments on commit 8100dce

Please sign in to comment.