Cogworks.AzureSearch.IoC.Umbraco
2.2.0
Prefix Reserved
dotnet add package Cogworks.AzureSearch.IoC.Umbraco --version 2.2.0
NuGet\Install-Package Cogworks.AzureSearch.IoC.Umbraco -Version 2.2.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.2.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.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cogworks.AzureSearch.IoC.Umbraco, 2.2.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.2.0 // Install Cogworks.AzureSearch.IoC.Umbraco as a Cake Tool #tool nuget:?package=Cogworks.AzureSearch.IoC.Umbraco&version=2.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Cogworks.AzureSearch.IoC.Umbraco ·
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
- Cogworks.AzureSearch is licensed under the Apache License, Version 2.0
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 is compatible. 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.
-
net6.0
- Azure.Search.Documents (>= 11.2.0)
- Cogworks.AzureSearch (>= 1.0.2)
- Umbraco.Cms.Core (>= 10.0.0 && < 11.0.0)
-
net7.0
- Azure.Search.Documents (>= 11.2.0)
- Cogworks.AzureSearch (>= 1.0.2)
- Umbraco.Cms.Core (>= 11.0.0 && < 12.99.0)
-
net8.0
- Azure.Search.Documents (>= 11.2.0)
- Cogworks.AzureSearch (>= 1.0.2)
- Umbraco.Cms.Core (>= 13.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.