Dolittle.SDK.Extensions.Discovery
12.1.0-gandalf.0
dotnet add package Dolittle.SDK.Extensions.Discovery --version 12.1.0-gandalf.0
NuGet\Install-Package Dolittle.SDK.Extensions.Discovery -Version 12.1.0-gandalf.0
<PackageReference Include="Dolittle.SDK.Extensions.Discovery" Version="12.1.0-gandalf.0" />
paket add Dolittle.SDK.Extensions.Discovery --version 12.1.0-gandalf.0
#r "nuget: Dolittle.SDK.Extensions.Discovery, 12.1.0-gandalf.0"
// Install Dolittle.SDK.Extensions.Discovery as a Cake Addin #addin nuget:?package=Dolittle.SDK.Extensions.Discovery&version=12.1.0-gandalf.0&prerelease // Install Dolittle.SDK.Extensions.Discovery as a Cake Tool #tool nuget:?package=Dolittle.SDK.Extensions.Discovery&version=12.1.0-gandalf.0&prerelease
Dolittle is a platform designed to build Line of Business applications without sacrificing architectural quality, code quality or scalability.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- BaselineTypeDiscovery (>= 1.1.2)
- Dolittle.SDK (>= 12.1.0-gandalf.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
12.1.0-gandalf.0 | 1,506 | 11/26/2021 |
12.0.0 | 346 | 11/18/2021 |
12.0.0-legolas.7 | 138 | 11/18/2021 |
12.0.0-legolas.6 | 141 | 11/16/2021 |
12.0.0-legolas.5 | 141 | 11/15/2021 |
12.0.0-legolas.4 | 138 | 11/15/2021 |
12.0.0-legolas.3 | 170 | 11/11/2021 |
12.0.0-legolas.2 | 146 | 11/10/2021 |
12.0.0-legolas.1 | 154 | 11/9/2021 |
12.0.0-legolas.0 | 141 | 11/9/2021 |
11.0.0 | 322 | 11/5/2021 |
11.0.0-aragorn.8 | 176 | 11/5/2021 |
11.0.0-aragorn.7 | 170 | 11/4/2021 |
11.0.0-aragorn.6 | 144 | 11/4/2021 |
Version 12.1.0-gandalf.0:
Introduces some mocks in the Dolittle.SDK.Testing package that can be used for unit-testing aggregate roots. More documentation will come, but currently the intended use is something like this:
var events = await AggregateRootMock
.Of<Kitchen>("bfe6f6e4-ada2-4344-8a3b-65a3e1fe16e9")
.WithEvents(
new DishPrepared("Dish", "Chef"),
new DishPrepared("Dish", "Chef")
)
.Perform(kitchen => kitchen.PrepareDish("Bean Blaster Taco", "Mr. Taco"))
.GetAppliedEvents();
foreach (var evt in events)
{
Console.WriteLine($"Applied event {evt}");
}When you call .GetAppliedEvents() it will return the events applied by the aggregate root, or throw the exception thrown in the method of the aggregate root.
Changelog:
For all release notes, see changelog (https://github.com/dolittle/DotNET.SDK/blob/master/CHANGELOG.md)