Skip to content

Commit b42a79d

Browse files
Set version to '13.0.0-rc3'
1 parent e8f4fd7 commit b42a79d

File tree

9 files changed

+4187
-1107
lines changed

9 files changed

+4187
-1107
lines changed

.artifactignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
**/*
2-
!src/*/bin/**
3-
!src/*/obj/**
42
!tests/*/bin/**
5-
!tests/*/obj/**

Directory.Packages.props

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
</PropertyGroup>
55
<ItemGroup>
6-
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
76
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" />
87
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
9-
<GlobalPackageReference Include="Umbraco.Code" Version="2.0.0" />
8+
<GlobalPackageReference Include="Umbraco.Code" Version="2.1.0" />
109
<GlobalPackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" />
1110
</ItemGroup>
1211
<ItemGroup>
1312
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
14-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
15-
<PackageVersion Include="Umbraco.Cms.Tests" Version="[13.0.0-rc2, 14)" />
16-
<PackageVersion Include="Umbraco.Deploy.Infrastructure" Version="[13.0.0-rc2, 14)" />
13+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14+
<PackageVersion Include="Umbraco.Cms.Tests" Version="[13.0.0-rc4, 14)" />
15+
<PackageVersion Include="Umbraco.Deploy.Infrastructure" Version="[13.0.0-rc4, 14)" />
1716
</ItemGroup>
1817
</Project>

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ parameters:
1010
- name: cache_nuget
1111
displayName: Cache NuGet packages
1212
type: boolean
13-
default: true
13+
default: false # As long as we're overwriting versions on MyGet, we can't cache NuGet packages
1414

1515
variables:
1616
solution: Umbraco.Deploy.Contrib.sln

src/Umbraco.Deploy.Contrib/Umbraco.Deploy.Contrib.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<PropertyGroup>
33
<Title>Umbraco Deploy - Contrib</Title>
44
<Description>Umbraco Deploy Contrib provides community contributions for Umbraco Deploy. This package can be used with Umbraco CMS version 9 and higher, for version 8 or below, use https://www.nuget.org/packages/UmbracoDeploy.Contrib/ instead.</Description>
5+
<!-- Deploy Contrib currently doesn't contain any code, skip including empty assembly -->
6+
<IncludeBuildOutput>false</IncludeBuildOutput>
7+
<IncludeSymbols>false</IncludeSymbols>
58
</PropertyGroup>
69

710
<ItemGroup>

src/Umbraco.Deploy.Contrib/packages.lock.json

Lines changed: 556 additions & 442 deletions
Large diffs are not rendered by default.

tests/Umbraco.Deploy.Contrib.Tests/appsettings-schema.Umbraco.Cms.json

Lines changed: 1952 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"allOf": [
4+
{
5+
"$ref": "https://json.schemastore.org/appsettings.json"
6+
},
7+
{
8+
"$ref": "appsettings-schema.Umbraco.Cms.json#"
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)