Skip to content

Commit ef85281

Browse files
committed
Work CI-CD
- Brought Azure Pipelines yaml up to date. - Fix repo name in change log config. - Update gitignore.
1 parent 21aa8ab commit ef85281

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github_changelog_generator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
user=nanoframework
2-
project=lib-System.Device.Pwm
2+
project=System.Device.Pwm
33
issues=true
44
add_issues_wo_labels=false
55
add_pr_wo_labels=false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,6 @@ paket-files/
253253

254254
#SoundCloud
255255
*.sonarqube/
256+
257+
#VS Code
258+
.vscode/settings.json

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ trigger:
22
branches:
33
include: [main, develop, "release-*" ]
44
paths:
5-
exclude: ["*.md", .gitignore]
5+
exclude: [README.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
66
tags:
77
include: ["v*"]
88

99
# PR always trigger build
10+
pr:
11+
autoCancel: true
1012

1113
# add nf-tools repo to resources (for Azure Pipelines templates)
1214
resources:
@@ -20,13 +22,11 @@ pool:
2022
vmImage: 'windows-2019'
2123

2224
variables:
23-
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
24-
solution: '**/*.sln'
25+
DOTNET_NOLOGO: true
26+
solution: 'nanoFramework.System.Device.Pwm.sln'
2527
buildPlatform: 'Any CPU'
2628
buildConfiguration: 'Release'
27-
classLibName: 'System.Device.Pwm'
2829
nugetPackageName: 'nanoFramework.System.Device.Pwm'
29-
repoName: 'System.Device.Pwm'
3030

3131
steps:
3232

0 commit comments

Comments
 (0)