Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.

Commit 363f54b

Browse files
committed
Upgrade the 14 website to beta1
1 parent 706e791 commit 363f54b

File tree

15 files changed

+18
-385
lines changed

15 files changed

+18
-385
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ If you want to add more UI examples to this package, please [raise an issue](./i
55
Open the solution file `UI Examples.sln` in Visual Studio. You will see three projects:
66
- `Our.Umbraco.UiExamples` is the main project containing the files that you will be working with
77
- `Umbraco8.Website` is an Umbraco v8 test site
8-
- `Umrbaco9.Website` is an Umbraco v9 test site
8+
- `Umbraco9.Website` is an Umbraco v9 test site
9+
- `Umbraco14.Website` is an Umbraco v14 test site
910

10-
Steps to get the two test sites working:
11+
Steps to get the test sites working:
1112
- Build the solution
1213
- Run both test websites to run an unattended install (using a SQL CE database)
1314
- Login to the backoffice using:
1415
- Username: uiexamples@example.com
1516
- Password: 1234567890
17+
18+
For v14 you will also need to run `npm ci` within the `src\Our.Umbraco.UiExamples.v14` directory, and then `npm run dev` to start the development batch job. This will copy the files from the package into `samples\Umbraco14.Website` ready to see in the backoffice.
1619

1720
## Making changes
1821
The files you will be working on are in the `App_Plugins` folder in the main `Our.Umbraco.UiExamples` project. Changed files need to be copied into the test websites so you can confirm they work, which is automatically done when building the test websites (using a MSBuild target).

samples/Umbraco14.Website/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
})
2121
.WithEndpoints(u =>
2222
{
23-
u.UseInstallerEndpoints();
2423
u.UseBackOfficeEndpoints();
2524
u.UseWebsiteEndpoints();
2625
});

samples/Umbraco14.Website/Properties/launchSettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"windowsAuthentication": false,
55
"anonymousAuthentication": true,
66
"iisExpress": {
7-
"applicationUrl": "http://localhost:13596",
8-
"sslPort": 44322
7+
"applicationUrl": "http://localhost:55287",
8+
"sslPort": 44342
99
}
1010
},
1111
"profiles": {
@@ -20,7 +20,7 @@
2020
"commandName": "Project",
2121
"dotnetRunMessages": true,
2222
"launchBrowser": true,
23-
"applicationUrl": "https://localhost:44322;http://localhost:13596",
23+
"applicationUrl": "https://localhost:44342;http://localhost:55287",
2424
"environmentVariables": {
2525
"ASPNETCORE_ENVIRONMENT": "Development"
2626
}

samples/Umbraco14.Website/Umbraco14.Website.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Umbraco.Cms" Version="14.0.0--preview003" />
12+
<PackageReference Include="Umbraco.Cms" Version="14.0.0-beta001" />
1313
</ItemGroup>
1414

1515
<ItemGroup>
1616
<!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms -->
17-
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.1" />
18-
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.1" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
17+
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
18+
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
1919
</ItemGroup>
2020

2121
<PropertyGroup>

samples/Umbraco14.Website/Views/Partials/grid/bootstrap3-fluid.cshtml

Lines changed: 0 additions & 106 deletions
This file was deleted.

samples/Umbraco14.Website/Views/Partials/grid/bootstrap3.cshtml

Lines changed: 0 additions & 112 deletions
This file was deleted.

samples/Umbraco14.Website/Views/Partials/grid/editors/base.cshtml

Lines changed: 0 additions & 27 deletions
This file was deleted.

samples/Umbraco14.Website/Views/Partials/grid/editors/embed.cshtml

Lines changed: 0 additions & 11 deletions
This file was deleted.

samples/Umbraco14.Website/Views/Partials/grid/editors/macro.cshtml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)