File tree Expand file tree Collapse file tree 9 files changed +18
-16
lines changed
examples/Umbraco.StorageProviders.AzureBlob.TestSite Expand file tree Collapse file tree 9 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <TargetFramework >net8 .0</TargetFramework >
3
+ <TargetFramework >net9 .0</TargetFramework >
4
4
<Company >Umbraco HQ</Company >
5
5
<Authors >Umbraco</Authors >
6
6
<Copyright >Copyright © Umbraco $([System.DateTime]::Today.ToString('yyyy'))</Copyright >
28
28
<!-- Package Validation -->
29
29
<PropertyGroup >
30
30
<GenerateCompatibilitySuppressionFile >false</GenerateCompatibilitySuppressionFile >
31
- <EnablePackageValidation >true</EnablePackageValidation >
32
- <PackageValidationBaselineVersion >14.0.0</PackageValidationBaselineVersion >
31
+ <!-- TODO (V15): Re-enable when 15 is released. -->
32
+ <EnablePackageValidation >false</EnablePackageValidation >
33
+ <PackageValidationBaselineVersion >15.0.0</PackageValidationBaselineVersion >
33
34
<EnableStrictModeForCompatibleFrameworksInPackage >true</EnableStrictModeForCompatibleFrameworksInPackage >
34
35
<EnableStrictModeForCompatibleTfms >true</EnableStrictModeForCompatibleTfms >
35
36
</PropertyGroup >
Original file line number Diff line number Diff line change 9
9
<GlobalPackageReference Include =" Umbraco.GitVersioning.Extensions" Version =" 0.2.0" />
10
10
</ItemGroup >
11
11
<PropertyGroup >
12
- <UmbracoCmsPackageVersion >[14 .0.0, 15 )</UmbracoCmsPackageVersion >
12
+ <UmbracoCmsPackageVersion >[15 .0.0-rc1, 16 )</UmbracoCmsPackageVersion >
13
13
</PropertyGroup >
14
14
<ItemGroup >
15
15
<PackageVersion Include =" Azure.Storage.Blobs" Version =" 12.22.1" />
16
16
<PackageVersion Include =" SixLabors.ImageSharp.Web.Providers.Azure" Version =" 3.1.3" />
17
17
<PackageVersion Include =" Umbraco.Cms.Imaging.ImageSharp" Version =" $(UmbracoCmsPackageVersion)" />
18
18
<PackageVersion Include =" Umbraco.Cms.Web.Common" Version =" $(UmbracoCmsPackageVersion)" />
19
19
</ItemGroup >
20
- </Project >
20
+ </Project >
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ This repository contains Umbraco storage providers that can replace the default
3
3
4
4
> ** Note**
5
5
> Use the following documentation for previous Umbraco CMS versions:
6
+ > * [ Umbraco CMS 14 - v14] ( https://github.com/umbraco/Umbraco.StorageProviders/blob/support/14.x/README.md )
6
7
> * [ Umbraco CMS 13 - v13] ( https://github.com/umbraco/Umbraco.StorageProviders/blob/support/13.x/README.md )
7
8
> * [ Umbraco CMS 12 - v12] ( https://github.com/umbraco/Umbraco.StorageProviders/blob/support/12.0.x/README.md )
8
9
> * [ Umbraco CMS 11 - v11] ( https://github.com/umbraco/Umbraco.StorageProviders/blob/support/11.0.x/README.md )
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
<ImplicitUsings >enable</ImplicitUsings >
5
5
<Nullable >enable</Nullable >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
- <PackageReference Include =" Umbraco.Cms" Version =" 14.3.1 " />
9
+ <PackageReference Include =" Umbraco.Cms" Version =" 15.0.0-rc1 " />
10
10
<PackageReference Include =" Umbraco.TheStarterKit" Version =" 14.0.0" />
11
11
</ItemGroup >
12
12
Original file line number Diff line number Diff line change 14
14
new { numberOfPosts = Model .HowManyPostsShouldBeShown , startNodeKey = Model .Key } )
15
15
</div >
16
16
17
- </section >
17
+ </section >
Original file line number Diff line number Diff line change 1
-
2
- @using Umbraco .Extensions
1
+ @using Umbraco .Extensions
3
2
@using Umbraco .Cms .Web .Common .PublishedModels ;
4
3
@inherits Umbraco .Cms .Web .Common .Views .UmbracoViewPage <Home >
5
4
@{
42
41
</div >
43
42
</div >
44
43
45
- </section >
44
+ </section >
Original file line number Diff line number Diff line change 11
11
}
12
12
},
13
13
"ConnectionStrings" : {
14
- "umbracoDbDSN" : " Data Source=|DataDirectory|/Umbraco-14 .sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True" ,
14
+ "umbracoDbDSN" : " Data Source=|DataDirectory|/Umbraco-15 .sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True" ,
15
15
"umbracoDbDSN_ProviderName" : " Microsoft.Data.Sqlite"
16
16
},
17
17
"Umbraco" : {
41
41
"AzureBlob" : {
42
42
"Media" : {
43
43
"ConnectionString" : " UseDevelopmentStorage=true" ,
44
- "ContainerName" : " umbraco-storageproviders-14 "
44
+ "ContainerName" : " umbraco-storageproviders-15 "
45
45
}
46
46
}
47
47
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8.0.100" ,
4
- "rollForward" : " latestFeature"
3
+ "version" : " 9.0.100-rc.1.24452.12" ,
4
+ "rollForward" : " latestFeature" ,
5
+ "allowPrerelease" : true
5
6
}
6
7
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json" ,
3
- "version" : " 14.1.1 -alpha" ,
3
+ "version" : " 15.0.0 -alpha" ,
4
4
"assemblyVersion" : {
5
5
"precision" : " build"
6
6
},
You can’t perform that action at this time.
0 commit comments