Skip to content

Commit 792d664

Browse files
Upgrade to Umbraco 17.0.0
1 parent 332c39b commit 792d664

29 files changed

+1443
-55
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,3 +487,5 @@ $RECYCLE.BIN/
487487
# Umbraco specific gitignore
488488
#
489489
**/config.outputPath.js
490+
491+
appsettings.Local.json

NuGet.config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="Umbraco Prereleases" value="https://www.myget.org/F/umbracoprereleases/api/v3/index.json" />
7+
</packageSources>
8+
</configuration>

Umbraco.Cms.Integrations.sln

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ VisualStudioVersion = 18.0.11111.16
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2801CB6C-78DE-4129-B5C6-D349F47F9B5C}"
77
ProjectSection(SolutionItems) = preProject
8+
.gitignore = .gitignore
89
azure-pipeline - Crm.ActiveCampaign.yml = azure-pipeline - Crm.ActiveCampaign.yml
910
azure-pipeline - Crm.Dynamics.yml = azure-pipeline - Crm.Dynamics.yml
1011
azure-pipeline - Crm.Hubspot.yml = azure-pipeline - Crm.Hubspot.yml
1112
azure-pipeline - Search.Algolia.yml = azure-pipeline - Search.Algolia.yml
1213
azure-pipeline - SEO.SemrushTools.yml = azure-pipeline - SEO.SemrushTools.yml
1314
azure-pipelines - Automation.Zapier.yml = azure-pipelines - Automation.Zapier.yml
1415
azure-pipelines - Commerce.Shopify.yml = azure-pipelines - Commerce.Shopify.yml
16+
NuGet.config = NuGet.config
1517
README.md = README.md
1618
EndProjectSection
1719
EndProject

azure-pipelines - Commerce.Shopify.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,9 @@ steps:
3535
displayName: 'NuGet Restore'
3636
inputs:
3737
command: 'restore'
38-
feedsToUse: 'select'
38+
feedsToUse: 'config'
3939
projects: '$(project)'
40-
includeNuGetOrg: true
41-
42-
- task: UseDotNet@2
43-
displayName: 'Use SDK version 9.0.203'
44-
inputs:
45-
packageType: 'sdk'
46-
version: '9.0.203'
40+
nugetConfigPath: 'NuGet.config'
4741

4842
- task: VSBuild@1
4943
displayName: 'Build Project'

examples/Umbraco.Cms.Integrations.Testsite.V17/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
22

3+
#if DEBUG
4+
builder.Configuration.AddJsonFile("appsettings.Local.json", optional: true, reloadOnChange: true);
5+
#endif
6+
37
builder.CreateUmbracoBuilder()
48
.AddBackOffice()
59
.AddWebsite()

examples/Umbraco.Cms.Integrations.Testsite.V17/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"IIS Express": {
1313
"commandName": "IISExpress",
1414
"launchBrowser": true,
15+
"launchUrl": "umbraco",
1516
"environmentVariables": {
1617
"ASPNETCORE_ENVIRONMENT": "Development"
1718
}

examples/Umbraco.Cms.Integrations.Testsite.V17/Umbraco.Cms.Integrations.Testsite.V17.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
33
<TargetFramework>net10.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
@@ -7,7 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Umbraco.Cms" Version="17.0.0-beta" />
10+
<PackageReference Include="Umbraco.Cms" Version="17.0.0" />
11+
<ProjectReference Include="..\..\src\Umbraco.Cms.Integrations.Commerce.Shopify\Umbraco.Cms.Integrations.Commerce.Shopify.csproj" />
1112
</ItemGroup>
1213

1314
<ItemGroup>

examples/Umbraco.Cms.Integrations.Testsite.V17/appsettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
}
1111
}
1212
},
13+
"ConnectionStrings": {
14+
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
15+
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
16+
},
1317
"Umbraco": {
1418
"CMS": {
1519
"Global": {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@umbraco-cms:registry=https://www.myget.org/F/umbracoprereleases/npm/

0 commit comments

Comments
 (0)