Skip to content

Commit 4ebc52b

Browse files
committed
Work CI-CD
- Update azure pipeline yaml. - Fix properties for nupkg. - Update logo for nuget assets. - Fix typos. ***NO_CI***
1 parent 00d0b7f commit 4ebc52b

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

NuGet.Config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="Azure Artifacts nanoFramework dev" value="https://pkgs.dev.azure.com/nanoframework/feed/_packaging/sandbox/nuget/v3/index.json" protocolVersion="3" />
54
<add key="NuGet" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5+
<add key="Azure Artifacts nanoFramework dev" value="https://pkgs.dev.azure.com/nanoframework/feed/_packaging/sandbox/nuget/v3/index.json" protocolVersion="3" />
66
</packageSources>
77
</configuration>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md) [![Build Status](https://dev.azure.com/nanoframework/nanoFirmwareFlasher/_apis/build/status/nanoframework.nanoFirmwareFlasher?branchName=develop)](https://dev.azure.com/nanoframework/nanoFirmwareFlasher/_build/latest?definitionId=45&branchName=develop) [![NuGet](https://img.shields.io/nuget/v/nanoff.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoff/) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T)
22

3-
![nanoFramework logo](https://github.com/nanoframework/Home/blob/main/resources/logo/nanoFramework-repo-logo.png)
3+
![nanoFramework logo](https://raw.githubusercontent.com/nanoframework/Home/main/resources/logo/nanoFramework-repo-logo.png)
44

55
-----
66

7-
### Welcome to the .NET **nanoFramework** firmware flasher tool repository!
7+
### Welcome to the .NET **nanoFramework** firmware flasher tool repository
88

99
This repo contains the nano firmware flasher tool.
1010
It's a [.NET Core CLI Global Tool](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools) that allows flashing a .NET **nanoFramework** target with nanoBooter, nanoCLR, managed application or backup files.

assets/nf-logo.png

4.95 KB
Loading

azure-pipelines.yml

Lines changed: 4 additions & 2 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: [README.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
5+
exclude: [README.md, CHANGELOG.md, CODE_OF_CONDUCT.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
66
tags:
77
include: ["v*"]
88

9-
# no pr config, we want to trigger builds for all PRs on all branches
9+
# PR always trigger build
10+
pr:
11+
autoCancel: true
1012

1113
# add nf-tools repo to resources (for Azure Pipelines templates)
1214
resources:

nanoFirmwareFlasher/nanoFirmwareFlasher.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
4343
<PackageIcon>images\nf-logo.png</PackageIcon>
4444
<PackageTags>nanoFramework, nano Framework, NETNF, NETMF, Micro Framework, .net</PackageTags>
45+
<PackageReadmeFile>README.md</PackageReadmeFile>
4546
</PropertyGroup>
4647

4748
<ItemGroup>
@@ -57,6 +58,10 @@
5758
</ItemGroup>
5859

5960
<ItemGroup>
61+
<None Include="..\..\nf-nanoFramework.Networking.Sntp\README.md">
62+
<Pack>True</Pack>
63+
<PackagePath>\</PackagePath>
64+
</None>
6065
<None Include="..\assets\nf-logo.png">
6166
<Pack>True</Pack>
6267
<PackagePath>images</PackagePath>

0 commit comments

Comments
 (0)