Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ stages:
vmImage: windows-latest
steps:
- task: UseDotNet@2
displayName: Use .Net Core sdk 8.x
displayName: Use .Net 10.x
inputs:
version: 8.x
version: 10.x

- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
Expand Down Expand Up @@ -45,9 +45,9 @@ stages:
vmImage: ubuntu-latest
steps:
- task: UseDotNet@2
displayName: Use .Net Core sdk 8.x
displayName: Use .Net Core 10.x
inputs:
version: 8.x
version: 10.x

- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
Expand Down Expand Up @@ -82,6 +82,11 @@ stages:
- checkout: self
fetchDepth: 0

- task: UseDotNet@2
displayName: Use .Net Core 10.x
inputs:
version: 10.x

- script: dotnet tool install --global CycloneDX
displayName: 'Install CycloneDX .NET Tool'

Expand All @@ -97,7 +102,7 @@ stages:
inputs:
bomFilePath: bom.xml
dtrackProjName: 'Umbraco.ExaminePDF'
dtrackProjVersion: '14'
dtrackProjVersion: '17'
dtrackAPIKey: $(DT_API_KEY)
dtrackURI: $(DT_API_URL)
dtrackProjAutoCreate: true
Expand All @@ -113,9 +118,9 @@ stages:
steps:

- task: UseDotNet@2
displayName: Use .Net Core sdk 8.x
displayName: Use .Net Core 10.x
inputs:
version: 8.x
version: 10.x

- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>UmbracoExamine_PDF.TestSite</RootNamespace>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="15.2.1" />
<PackageReference Include="Umbraco.Cms" Version="17.0.0-rc3" />
<PackageReference Include="Umbraco.Cms.DevelopmentMode.Backoffice" Version="17.0.0-rc3" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/UmbracoExamine-PDF.TestSite/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
}
}
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
},
"Umbraco": {
"CMS": {
"Hosting": {
Expand All @@ -23,5 +19,9 @@
"Id": "9838d517-4f47-421f-9d2d-103d36de4ff0"
}
}
},
"ConnectionStrings": {
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
}
}
Loading
Loading