Cogworks.AzureSearch.IoC.Umbraco 2.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Cogworks.AzureSearch.IoC.Umbraco --version 2.1.0
NuGet\Install-Package Cogworks.AzureSearch.IoC.Umbraco -Version 2.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="Cogworks.AzureSearch.IoC.Umbraco" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cogworks.AzureSearch.IoC.Umbraco --version 2.1.0
#r "nuget: Cogworks.AzureSearch.IoC.Umbraco, 2.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 Cogworks.AzureSearch.IoC.Umbraco as a Cake Addin
#addin nuget:?package=Cogworks.AzureSearch.IoC.Umbraco&version=2.1.0

// Install Cogworks.AzureSearch.IoC.Umbraco as a Cake Tool
#tool nuget:?package=Cogworks.AzureSearch.IoC.Umbraco&version=2.1.0

Cogworks.AzureSearch.IoC.Umbraco · GitHub license Github Build NuGet Version codecov

An Umbraco DI extension to Cogworks.AzureSearch.

Usage

Registration

_composing.RegisterAzureSearch()
    .RegisterClientOptions("[AzureSearchServiceName]", "[AzureSearchCredentials]")
    .RegisterIndexOptions(false, false) // for now required
    .RegisterIndexDefinitions<FirstDocumentModel>("first-document-index-name")
    .RegisterIndexDefinitions<SecondDocumentModel>("second-document-index-name")
    .RegisterIndexDefinitions<ThirdDocumentModel>(new Index{
        Name = "third-document-index-name",
        ScoringProfiles = new List<ScoringProfile>()
                {
                    new ScoringProfile("global-sp", new TextWeights(new Dictionary<string, double>()
                    {
                        {"Name", 10}, {"Content", 0.1}, {"Tags/Name", 0.1}
                    }),new List<ScoringFunction>()
                    {
                        new FreshnessScoringFunction("PublishDate", 20, TimeSpan.FromDays(180), ScoringFunctionInterpolation.Quadratic)
                    })
                } //and more custom properties to add
    })
    .RegisterDomainSearcher<SomeDomainSearch, ISomeDomainSearch, FirstDocumentModel>();

License

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

Blogs

How can you help?

Please... Spread the word, contribute, submit improvements and issues, unit tests, no input is too little. Thank you in advance ❤️

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.1.0 7,850 2/8/2023
2.0.1 3,045 3/28/2022
2.0.0 418 3/24/2022
1.1.0 3,494 6/21/2021
1.0.0 293 5/14/2021