Dolittle.SDK.Analyzers 23.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dolittle.SDK.Analyzers --version 23.1.0
NuGet\Install-Package Dolittle.SDK.Analyzers -Version 23.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dolittle.SDK.Analyzers" Version="23.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dolittle.SDK.Analyzers --version 23.1.0
#r "nuget: Dolittle.SDK.Analyzers, 23.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dolittle.SDK.Analyzers as a Cake Addin
#addin nuget:?package=Dolittle.SDK.Analyzers&version=23.1.0

// Install Dolittle.SDK.Analyzers as a Cake Tool
#tool nuget:?package=Dolittle.SDK.Analyzers&version=23.1.0

Dolittle

Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.

This is our C# SDK, install it with:

dotnet add package Dolittle.SDK 

Get Started

Want to try another language?

Issues and Contributing

Issues and contributions are always welcome!

To learn how to contribute, please read our contributing guide.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Dolittle.SDK.Analyzers:

Package Downloads
Dolittle.SDK

Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
23.2.0 422 3/14/2024
23.1.0 192 3/12/2024
23.0.0 171 3/8/2024
22.1.3 217 2/26/2024
22.1.2 1,054 10/24/2023
22.1.1 380 10/4/2023
22.1.0 300 9/18/2023
22.0.5 354 9/7/2023
22.0.4 447 8/28/2023
22.0.3 343 8/15/2023
22.0.2 414 8/8/2023
22.0.1 275 8/8/2023
22.0.0 457 6/22/2023
22.0.0-arkenstone.1 73 6/21/2023
22.0.0-arkenstone.0 67 6/12/2023
21.0.2 487 9/7/2023
21.0.1 562 6/8/2023
21.0.0 254 6/2/2023
21.0.0-feanor.2 65 5/31/2023
21.0.0-feanor.1 1,131 5/30/2023
21.0.0-feanor.0 63 5/30/2023
20.2.0 2,450 1/23/2023
20.2.0-shire.17 97 1/19/2023
20.2.0-shire.16 86 1/16/2023
20.2.0-shire.15 91 1/12/2023
20.2.0-shire.14 94 1/12/2023
20.2.0-shire.13 86 1/12/2023
20.2.0-shire.12 93 1/11/2023
20.2.0-shire.11 85 1/10/2023
20.2.0-shire.10 87 1/6/2023
20.2.0-shire.9 89 1/6/2023
20.2.0-shire.8 85 1/6/2023
20.2.0-shire.7 87 1/6/2023
20.2.0-shire.6 94 1/5/2023
20.2.0-shire.5 96 1/5/2023
20.2.0-shire.4 96 1/5/2023
20.2.0-shire.3 97 1/5/2023
20.2.0-shire.2 97 12/26/2022
20.2.0-shire.1 91 12/26/2022
20.2.0-shire.0 91 12/26/2022
20.1.0 420 12/25/2022
20.0.2 1,097 12/13/2022
20.0.1 420 12/12/2022
20.0.0 430 12/8/2022
19.1.0-elrond.7 80 12/7/2022
19.1.0-elrond.6 147 12/5/2022
19.1.0-elrond.5 79 12/5/2022
19.1.0-elrond.4 81 12/2/2022
19.1.0-elrond.3 83 12/2/2022
19.1.0-elrond.2 80 11/29/2022
19.1.0-elrond.1 82 11/28/2022
19.1.0-elrond.0 85 11/28/2022

Version 23.1.0:
This release focuses on Projection / read model features and performance.  

In addition to new Roslyn analyzers, this adds the ability to have fine grained control over TTL for each projection type, and to select if it should go via in-memory cache when getting projections.

There has also been added IProjectionOf.Subscribe, which enables a client to have real time updates on individual keys. Useful for streaming changes to frontend / UX when a specific read model has focus.

Added:
- Aggregates mutation method codefixes
- Projection analyzers & codefixes
- Ability to configure TTL for read model cache per entity
- Ability to read through read model cache when getting individual projections
- Projection subscriptions: Ability to get all updates to an individual key. Requires the projection to be ICloneable, as the classes are not guaranteed to be immutable.

Fixed:
- Projection idempotency, will now track which offset was last processed. This guarantees each event is processed only once for a single read model.

Changelog:
For all release notes, see changelog (https://github.com/dolittle/DotNET.SDK/blob/master/CHANGELOG.md)