Work CI-CD
- Update azure pipeline yaml. - Fix nuspec. - Update logo for nuget assets. - Update projects to migrate to VS2022. - Fix typos. - Add missign URL in nupkg readme. ***NO_CI***
This commit is contained in:
Родитель
04aa9d6b67
Коммит
d669dd421b
|
@ -1,10 +1,10 @@
|
|||
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_System.IO.Ports&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_System.IO.Ports) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_System.IO.Ports&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_System.IO.Ports) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.System.IO.Ports.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.IO.Ports/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T)
|
||||
|
||||
![nanoFramework logo](https://github.com/nanoframework/Home/blob/main/resources/logo/nanoFramework-repo-logo.png)
|
||||
![nanoFramework logo](https://raw.githubusercontent.com/nanoframework/Home/main/resources/logo/nanoFramework-repo-logo.png)
|
||||
|
||||
-----
|
||||
|
||||
# Welcome to the **nanoFramework** System.IO.Ports Library repository!
|
||||
# Welcome to the .NET **nanoFramework** System.IO.Ports Library repository
|
||||
|
||||
## Build status
|
||||
|
||||
|
@ -162,7 +162,7 @@ The **nanoFramework** Class Libraries are licensed under the [MIT license](LICEN
|
|||
|
||||
## Code of Conduct
|
||||
|
||||
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
|
||||
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community.
|
||||
For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
|
||||
|
||||
### .NET Foundation
|
||||
|
|
|
@ -5,9 +5,9 @@ using System.Runtime.InteropServices;
|
|||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("System.IO.Ports")]
|
||||
[assembly: AssemblyTitle("nanoFramework.System.IO.Ports")]
|
||||
[assembly: AssemblyCompany("nanoFramework Contributors")]
|
||||
[assembly: AssemblyProduct("System.IO.Ports")]
|
||||
[assembly: AssemblyProduct("nanoFramework.System.IO.Ports")]
|
||||
[assembly: AssemblyCopyright("Copyright (c) .NET Foundation and Contributors")]
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Label="Globals">
|
||||
<NanoFrameworkProjectSystemPath>$(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\</NanoFrameworkProjectSystemPath>
|
||||
<NanoFrameworkProjectSystemPath>$(MSBuildExtensionsPath)\nanoFramework\v1.0\</NanoFrameworkProjectSystemPath>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props')" />
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Label="Globals">
|
||||
<NanoFrameworkProjectSystemPath>$(MSBuildToolsPath)..\..\..\nanoFramework\v1.0\</NanoFrameworkProjectSystemPath>
|
||||
<NanoFrameworkProjectSystemPath>$(MSBuildExtensionsPath)\nanoFramework\v1.0\</NanoFrameworkProjectSystemPath>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.Default.props')" />
|
||||
<ItemGroup>
|
||||
|
|
Двоичные данные
assets/nf-logo.png
Двоичные данные
assets/nf-logo.png
Двоичный файл не отображается.
До Ширина: | Высота: | Размер: 4.0 KiB После Ширина: | Высота: | Размер: 9.0 KiB |
|
@ -6,7 +6,7 @@
|
|||
|
||||
===================================================================================
|
||||
|
||||
API docs: https://docs.nanoframework.net/api
|
||||
API docs: https://docs.nanoframework.net/api/System.IO.Ports
|
||||
|
||||
Browse our samples repository: https://github.com/nanoframework/System.IO.Ports
|
||||
|
||||
|
|
|
@ -2,11 +2,13 @@ trigger:
|
|||
branches:
|
||||
include: [main, develop, "release-*" ]
|
||||
paths:
|
||||
exclude: [README.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
|
||||
exclude: [README.md, CHANGELOG.md, CODE_OF_CONDUCT.md, LICENSE.md, NuGet.Config, .github_changelog_generator, .gitignore]
|
||||
tags:
|
||||
include: ["v*"]
|
||||
|
||||
# PR always trigger build
|
||||
pr:
|
||||
autoCancel: true
|
||||
|
||||
# add nf-tools repo to resources (for Azure Pipelines templates)
|
||||
resources:
|
||||
|
@ -21,7 +23,7 @@ pool:
|
|||
|
||||
variables:
|
||||
DOTNET_NOLOGO: true
|
||||
solution: 'System.IO.Ports.sln'
|
||||
solution: 'nanoFramework.System.IO.Ports.sln'
|
||||
buildPlatform: 'Any CPU'
|
||||
buildConfiguration: 'Release'
|
||||
nugetPackageName: 'nanoFramework.System.IO.Ports'
|
||||
|
|
|
@ -5,19 +5,18 @@
|
|||
<version>$version$</version>
|
||||
<title>nanoFramework.System.IO.Ports</title>
|
||||
<authors>nanoFramework project contributors</authors>
|
||||
<owners>nanoFramework project contributors,dotnetfoundation</owners>
|
||||
<owners>nanoFramework,dotnetfoundation</owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<license type="file">LICENSE.md</license>
|
||||
<releaseNotes>
|
||||
</releaseNotes>
|
||||
<readme>docs\README.md</readme>
|
||||
<developmentDependency>false</developmentDependency>
|
||||
<projectUrl>https://github.com/nanoframework/System.IO.Ports</projectUrl>
|
||||
<iconUrl>https://secure.gravatar.com/avatar/97d0e092247f0716db6d4b47b7d1d1ad</iconUrl>
|
||||
<icon>images\nf-logo.png</icon>
|
||||
<repository type="git" url="https://github.com/nanoframework/System.IO.Ports" commit="$commit$" />
|
||||
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
|
||||
<description>This package includes the System.IO.Ports assembly for .NET nanoFramework C# projects.
|
||||
This package requires a target with System.IO.Ports v$nativeVersion$ (checksum $checksum$).</description>
|
||||
<summary>System.IO.Ports assembly for nanoFramework C# projects</summary>
|
||||
<description>This package includes the System.IO.Ports assembly for .NET nanoFramework C# projects. This package requires a target with System.IO.Ports v$nativeVersion$ (checksum $checksum$).</description>
|
||||
<tags>nanoFramework C# csharp netmf netnf System.IO.Ports</tags>
|
||||
<dependencies>
|
||||
<dependency id="nanoFramework.CoreLibrary" version="1.10.5" />
|
||||
|
@ -31,7 +30,8 @@ This package requires a target with System.IO.Ports v$nativeVersion$ (checksum $
|
|||
<file src="System.IO.Ports\bin\Release\System.IO.Ports.pe" target="lib\System.IO.Ports.pe" />
|
||||
<file src="System.IO.Ports\bin\Release\System.IO.Ports.xml" target="lib\System.IO.Ports.xml" />
|
||||
<file src="assets\readme.txt" target="" />
|
||||
<file src="README.md" target="docs\" />
|
||||
<file src="assets\nf-logo.png" target="images" />
|
||||
<file src="LICENSE.md" target="" />
|
||||
<file src="LICENSE.md" target="" /
|
||||
</files>
|
||||
</package>
|
Загрузка…
Ссылка в новой задаче