File tree 2 files changed +11
-2
lines changed
src/UmbracoExamine-PDF.TestSite
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ using Examine ;
2
+ using Umbraco . Cms . Core ;
3
+ using UmbracoExamine . PDF ;
4
+
1
5
WebApplicationBuilder builder = WebApplication . CreateBuilder ( args ) ;
2
6
3
7
builder . CreateUmbracoBuilder ( )
7
11
. AddComposers ( )
8
12
. Build ( ) ;
9
13
14
+ builder . Services . AddExamineLuceneMultiSearcher ( "MultiSearcher" , [
15
+ Constants . UmbracoIndexes . ExternalIndexName ,
16
+ PdfIndexConstants . PdfIndexName
17
+ ] ) ;
18
+
10
19
WebApplication app = builder . Build ( ) ;
11
20
12
21
await app . BootUmbracoAsync ( ) ;
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
<PropertyGroup >
3
- <TargetFramework >net8 .0</TargetFramework >
3
+ <TargetFramework >net9 .0</TargetFramework >
4
4
<RootNamespace >UmbracoExamine_PDF.TestSite</RootNamespace >
5
5
<IsPackable >false</IsPackable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<Nullable >enable</Nullable >
8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <PackageReference Include =" Umbraco.Cms" Version =" 14 .2.0-rc2 " />
11
+ <PackageReference Include =" Umbraco.Cms" Version =" 15 .2.1 " />
12
12
</ItemGroup >
13
13
14
14
<ItemGroup >
You can’t perform that action at this time.
0 commit comments