Skip to content

Commit 7c92e2e

Browse files
committed
Work CI-CD
- Rework pipeline yaml. - Minor adjustments in nuspec. - Migrate SLN to VS2022. ***NO_CI***
1 parent 8532081 commit 7c92e2e

File tree

3 files changed

+26
-10
lines changed

3 files changed

+26
-10
lines changed

azure-pipelines.yml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
1+
# Copyright (c) .NET Foundation and Contributors
2+
# See LICENSE file in the project root for full license information.
3+
14
trigger:
25
branches:
3-
include: [main, develop, "release-*" ]
6+
include:
7+
- main
8+
- develop
9+
- release-*
410
paths:
5-
exclude: [README.md, CHANGELOG.md, CODE_OF_CONDUCT.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
11+
exclude:
12+
- .github_changelog_generator
13+
- .gitignore
14+
- CHANGELOG.md
15+
- CODE_OF_CONDUCT.md
16+
- LICENSE.md
17+
- README.md
18+
- NuGet.Config
19+
- assets/*
20+
- config/*
21+
- .github/*
22+
623
tags:
7-
include: ["v*"]
24+
include:
25+
- v*
826

927
# PR always trigger build
1028
pr:
@@ -19,7 +37,7 @@ resources:
1937
endpoint: nanoframework
2038

2139
pool:
22-
vmImage: 'windows-2019'
40+
vmImage: 'windows-latest'
2341

2442
variables:
2543
DOTNET_NOLOGO: true

nanoFramework.System.IO.Ports.nuspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>nanoFramework.System.IO.Ports</id>
@@ -16,8 +16,7 @@
1616
<icon>images\nf-logo.png</icon>
1717
<repository type="git" url="https://github.com/nanoframework/System.IO.Ports" commit="$commit$" />
1818
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
19-
<description>This package includes the System.IO.Ports assembly for .NET nanoFramework C# projects.
20-
This package requires a target with System.IO.Ports v$nativeVersion$ (checksum $checksum$).</description>
19+
<description>This package includes the System.IO.Ports assembly for .NET nanoFramework C# projects.&#10;This package requires a target with System.IO.Ports v$nativeVersion$ (checksum $checksum$).</description>
2120
<tags>nanoFramework C# csharp netmf netnf System.IO.Ports</tags>
2221
<dependencies>
2322
<dependency id="nanoFramework.CoreLibrary" version="1.12.0-preview.5" />

nanoFramework.System.IO.Ports.sln

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31229.75
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.0.32112.339
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "System.IO.Ports", "System.IO.Ports\System.IO.Ports.nfproj", "{8D7253CC-A767-4D5D-9CFF-74282D75C1FA}"
76
EndProject

0 commit comments

Comments
 (0)