Skip to content

Commit a0e44ea

Browse files
Merge branch 'support/12.0.x' into develop
2 parents a8cd249 + 4cd6f8f commit a0e44ea

File tree

7 files changed

+7002
-7
lines changed

7 files changed

+7002
-7
lines changed

Directory.Build.props

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@
1919
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
2020
</PropertyGroup>
2121

22+
<!-- NuGet packages lock -->
23+
<PropertyGroup>
24+
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
25+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
26+
<DefaultItemExcludes>$(DefaultItemExcludes);packages.lock.json</DefaultItemExcludes>
27+
</PropertyGroup>
28+
2229
<!-- SourceLink -->
2330
<PropertyGroup>
2431
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -29,7 +36,7 @@
2936
<!-- Package Validation -->
3037
<PropertyGroup>
3138
<GenerateCompatibilitySuppressionFile>false</GenerateCompatibilitySuppressionFile>
32-
<!--<EnablePackageValidation>true</EnablePackageValidation>-->
39+
<EnablePackageValidation>true</EnablePackageValidation>
3340
<PackageValidationBaselineVersion>13.0.0</PackageValidationBaselineVersion>
3441
<EnableStrictModeForCompatibleFrameworksInPackage>true</EnableStrictModeForCompatibleFrameworksInPackage>
3542
<EnableStrictModeForCompatibleTfms>true</EnableStrictModeForCompatibleTfms>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55
<ItemGroup>
66
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" />
7-
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
7+
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
88
<GlobalPackageReference Include="Umbraco.Code" Version="2.1.0" />
99
<GlobalPackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" />
1010
</ItemGroup>

Umbraco.Cloud.StorageProviders.AzureBlob.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1717
global.json = global.json
1818
icon.png = icon.png
1919
LICENSE = LICENSE
20-
NuGet.config = NuGet.config
2120
README.md = README.md
21+
nuget.config = nuget.config
2222
version.json = version.json
2323
EndProjectSection
2424
EndProject

NuGet.config renamed to nuget.config

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
5+
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
66
<add key="Umbraco Prereleases" value="https://www.myget.org/F/umbracoprereleases/api/v3/index.json" />
77
<add key="Umbraco Nightly" value="https://www.myget.org/F/umbraconightly/api/v3/index.json" />
88
</packageSources>
99
<packageSourceMapping>
10-
<packageSource key="nuget.org">
10+
<packageSource key="nuget">
1111
<package pattern="*" />
12+
<package pattern="Umbraco.*" />
1213
</packageSource>
1314
<packageSource key="Umbraco Prereleases">
14-
<package pattern="*" />
15+
<package pattern="Umbraco.*" />
1516
</packageSource>
1617
<packageSource key="Umbraco Nightly">
17-
<package pattern="*" />
18+
<package pattern="Umbraco.*" />
1819
</packageSource>
1920
</packageSourceMapping>
2021
</configuration>

0 commit comments

Comments
 (0)