Skip to content

Commit c4c18b8

Browse files
Prepare RTM (#603)
* Prepare RTM * Don't use $(SolutionDir) in key path * Clean up warnings * Update license notices --------- Co-authored-by: Brandon Ording <bording@gmail.com>
1 parent c123fa2 commit c4c18b8

19 files changed

+34
-226
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
uses: actions/setup-dotnet@v4.0.0
3030
with:
3131
dotnet-version: 8.0.x
32-
dotnet-quality: 'preview'
3332
- name: Build
3433
run: dotnet build src --configuration Release
3534
- name: Upload packages

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
uses: actions/setup-dotnet@v4.0.0
1919
with:
2020
dotnet-version: 8.0.x
21-
dotnet-quality: 'preview'
2221
- name: Build
2322
run: dotnet build src --configuration Release
2423
- name: Sign NuGet packages

NOTICE.txt

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

THIRD-PARTY-NOTICES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
License notice for net-object-deep-copy
2+
---------------------------------------
3+
4+
https://github.com/Burtsev-Alexey/net-object-deep-copy/blob/master/README
5+
6+
Source code is released under the MIT license.
7+
8+
The MIT License (MIT)
9+
Copyright (c) 2014 Burtsev Alexey
10+
11+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

src/NServiceBus.Testing.Tests/NServiceBus.Testing.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ItemGroup>
1212
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.3" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
14-
<PackageReference Include="NServiceBus" Version="9.0.0-alpha.1" />
14+
<PackageReference Include="NServiceBus" Version="9.0.0" />
1515
<PackageReference Include="NUnit" Version="3.14.0" />
1616
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
1717
<PackageReference Include="Particular.Approvals" Version="1.0.0" />

src/NServiceBus.Testing.Tests/Sagas/BasicSaga.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public async Task TestBasicSaga()
3535
Assert.That(shipped.OrderId == "abc");
3636
}
3737

38-
public class ShippingPolicy : NServiceBus.Saga<ShippingPolicyData>,
38+
public class ShippingPolicy : Saga<ShippingPolicyData>,
3939
IAmStartedByMessages<OrderPlaced>,
4040
IAmStartedByMessages<OrderBilled>,
4141
IHandleTimeouts<ShippingDelay>

src/NServiceBus.Testing.Tests/Sagas/DelayedMessages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task TestDealyedMessages()
4040
Assert.That(delayedCmdResult.SagaDataSnapshot.DelayedCommandReceived, Is.True);
4141
}
4242

43-
public class DelaySaga : NServiceBus.Saga<Data>,
43+
public class DelaySaga : Saga<Data>,
4444
IAmStartedByMessages<Start>,
4545
IHandleMessages<DelayedCmd>,
4646
IHandleTimeouts<RegularTimeout>

src/NServiceBus.Testing.Tests/Sagas/ExternalHandlerSimulator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public async Task ExternalHandlerShouldSupplyReplyMessage()
2626
Assert.That(doneEvt.CorrId, Is.EqualTo("abc"));
2727
}
2828

29-
public class MySaga : NServiceBus.Saga<MyData>,
29+
public class MySaga : Saga<MyData>,
3030
IAmStartedByMessages<StartMsg>,
3131
IHandleMessages<Step1Response>
3232
{

src/NServiceBus.Testing.Tests/Sagas/HeaderMappings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public async Task TestHeaderMappings()
2222
Assert.That(result.SagaDataSnapshot.HeaderMessageReceived, Is.True);
2323
}
2424

25-
public class HeaderSaga : NServiceBus.Saga<HeaderSagaData>,
25+
public class HeaderSaga : Saga<HeaderSagaData>,
2626
IAmStartedByMessages<HeaderMessage>
2727
{
2828
protected override void ConfigureHowToFindSaga(SagaPropertyMapper<HeaderSagaData> mapper)

src/NServiceBus.Testing.Tests/Sagas/ReplyMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async Task TestReplyMessageApi()
2525
Assert.That(endResult.SagaDataSnapshot.ReplyReceived, Is.True);
2626
}
2727

28-
public class MySaga : NServiceBus.Saga<MyData>,
28+
public class MySaga : Saga<MyData>,
2929
IAmStartedByMessages<StartMsg>,
3030
IHandleMessages<Step1Reply>
3131
{

0 commit comments

Comments
 (0)