Skip to content
This repository was archived by the owner on Apr 6, 2024. It is now read-only.

Commit 31dc854

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 9d23879 + 86ea10d commit 31dc854

File tree

140 files changed

+2138
-1327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+2138
-1327
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build_script:
1818

1919
# Tests
2020
test_script:
21-
- ps: .\demos\build.ps1
21+
- ps: .\demos\script-runner\build.ps1
2222

2323
# Tests
2424
test: off

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: nuget
4+
directory: "/src"
5+
schedule:
6+
interval: daily
7+
time: "04:00"
8+
open-pull-requests-limit: 10
9+
ignore:
10+
- dependency-name: Cake.Core
11+
versions:
12+
- "> 1.0.0, < 2"
13+
- dependency-name: Cake.Testing
14+
versions:
15+
- "> 1.0.0, < 2"
16+
- dependency-name: Cake.Issues
17+
versions:
18+
- "> 1.0.0, < 2"

azure-pipelines.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
sourceFolder: $(Pipeline.Workspace)/NuGet Package
4242
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet
4343
displayName: 'Copy build artifact for test run'
44-
- powershell: ./build.ps1 -verbosity diagnostic
45-
workingDirectory: ./demos/
44+
- powershell: ./build.ps1 --verbosity=diagnostic
45+
workingDirectory: ./demos/script-runner/
4646
displayName: 'Run integration tests'
4747
- publish: $(Build.SourcesDirectory)/docs/templates
4848
artifact: Integration Tests Windows (.NET Framework)
@@ -69,10 +69,10 @@ jobs:
6969
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet
7070
displayName: 'Copy build artifact for test run'
7171
- powershell: dotnet tool restore
72-
workingDirectory: ./demos/
72+
workingDirectory: ./demos/script-runner/
7373
displayName: 'Restore .NET Core tool'
7474
- powershell: dotnet cake
75-
workingDirectory: ./demos/
75+
workingDirectory: ./demos/script-runner/
7676
displayName: 'Run integration tests'
7777
- publish: $(Build.SourcesDirectory)/docs/templates
7878
artifact: Integration Tests Windows (.NET Core tool)
@@ -92,7 +92,7 @@ jobs:
9292
npm install -g markdownlint-cli
9393
displayName: 'Install required tools'
9494
# To manually select a Xamarin SDK version on the Hosted macOS agent, enable this script with the SDK version you want to target
95-
# https://go.microsoft.com/fwlink/?linkid=871629
95+
# https://go.microsoft.com/fwlink/?linkid=871629
9696
- bash: |
9797
sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 5_18_1
9898
displayName: 'Select Mono 5.18.1'
@@ -105,8 +105,8 @@ jobs:
105105
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet
106106
displayName: 'Copy build artifact for test run'
107107
- bash: |
108-
./build.sh --verbosity diagnostic
109-
workingDirectory: ./demos/
108+
./build.sh --verbosity=diagnostic
109+
workingDirectory: ./demos/script-runner/
110110
displayName: 'Run integration tests'
111111
- publish: $(Build.SourcesDirectory)/docs/templates
112112
artifact: Integration Tests macOS 10.14 (Mono)
@@ -135,11 +135,11 @@ jobs:
135135
displayName: 'Copy build artifact for test run'
136136
- bash: |
137137
dotnet tool restore
138-
workingDirectory: ./demos/
138+
workingDirectory: ./demos/script-runner/
139139
displayName: 'Restore .NET Core tool'
140140
- bash: |
141141
dotnet cake
142-
workingDirectory: ./demos/
142+
workingDirectory: ./demos/script-runner/
143143
displayName: 'Run integration tests'
144144
- publish: $(Build.SourcesDirectory)/docs/templates
145145
artifact: Integration Tests macOS 10.15 (.NET Core tool)
@@ -167,8 +167,8 @@ jobs:
167167
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet
168168
displayName: 'Copy build artifact for test run'
169169
- bash: |
170-
./build.sh --verbosity diagnostic
171-
workingDirectory: ./demos/
170+
./build.sh --verbosity=diagnostic
171+
workingDirectory: ./demos/script-runner/
172172
displayName: 'Run integration tests'
173173
- publish: $(Build.SourcesDirectory)/docs/templates
174174
artifact: Integration Tests Ubuntu 16.04 (Mono)
@@ -197,11 +197,11 @@ jobs:
197197
displayName: 'Copy build artifact for test run'
198198
- bash: |
199199
dotnet tool restore
200-
workingDirectory: ./demos/
200+
workingDirectory: ./demos/script-runner/
201201
displayName: 'Restore .NET Core tool'
202202
- bash: |
203203
dotnet cake
204-
workingDirectory: ./demos/
204+
workingDirectory: ./demos/script-runner/
205205
displayName: 'Run integration tests'
206206
- publish: $(Build.SourcesDirectory)/docs/templates
207207
artifact: Integration Tests Ubuntu 16.04 (.NET Core tool)

cake.config

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

demos/build.sh

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

demos/.config/dotnet-tools.json renamed to demos/script-runner/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "0.38.0",
6+
"version": "1.0.0",
77
"commands": [
88
"dotnet-cake"
99
]
File renamed without changes.
File renamed without changes.

demos/build.cake renamed to demos/script-runner/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class BuildData
2828
this.RepoRootFolder = context.MakeAbsolute(context.Directory("./"));
2929
this.SourceFolder = this.RepoRootFolder.Combine("src");
3030
this.DocsFolder = this.RepoRootFolder.Combine("docs");
31-
this.TemplateGalleryFolder = this.RepoRootFolder.Combine("../docs/templates");
31+
this.TemplateGalleryFolder = this.RepoRootFolder.Combine("../../docs/templates");
3232

3333
this.Issues = new List<IIssue>();
3434
}

0 commit comments

Comments
 (0)