Skip to content

Commit 1706c05

Browse files
committed
Work CI-CD
- Replace NuGet installer with template. - Various fixes in nuspecs. - Swap feed order in NuGet config. ***NO_CI***
1 parent 7540d41 commit 1706c05

6 files changed

Lines changed: 18 additions & 21 deletions

.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=nanoFramework.System.Net.Http
2+
project=System.Net.Http
33
issues=true
44
add_issues_wo_labels=false
55
add_pr_wo_labels=false

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="NuGet" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
54
<add key="Azure Artifacts nanoFramework dev" value="https://pkgs.dev.azure.com/nanoframework/feed/_packaging/sandbox/nuget/v3/index.json" protocolVersion="3" />
5+
<add key="NuGet" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
66
</packageSources>
77
</configuration>

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ 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

@@ -20,7 +20,7 @@ pool:
2020
vmImage: 'windows-2019'
2121

2222
variables:
23-
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
23+
DOTNET_NOLOGO: true
2424
solution: '**/*.sln'
2525
buildPlatform: 'Any CPU'
2626
buildConfiguration: 'Release'

nanoFramework.System.Net.Http.Client.nuspec

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,20 @@
55
<version>$version$</version>
66
<title>nanoFramework.System.Net.Http.Client</title>
77
<authors>nanoFramework project contributors</authors>
8-
<owners>nanoFramework,dotnetfoundation</owners>
8+
<owners>nanoFramework project contributors,dotnetfoundation</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<license type="file">LICENSE.md</license>
1111
<releaseNotes>
1212
</releaseNotes>
1313
<developmentDependency>false</developmentDependency>
14-
<projectUrl>https://github.com/nanoframework/nanoFramework.System.Net.Http</projectUrl>
14+
<projectUrl>https://github.com/nanoframework/System.Net.Http</projectUrl>
1515
<icon>images\nf-logo.png</icon>
16-
<repository type="git" url="https://github.com/nanoframework/nanoFramework.System.Net.Http" commit="$commit$" />
16+
<repository type="git" url="https://github.com/nanoframework/System.Net.Http" commit="$commit$" />
1717
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1818
<description>
19-
This package includes the nanoFramework.System.Net.Http assembly (client API only) for nanoFramework C# projects.
20-
There is also a package with the server API only and another with the full API.
19+
This package includes the System.Net.Http assembly (client API only) for .NET nanoFramework C# projects.&#10;There is also a package with the server API only and another with the full API.
2120
</description>
22-
<tags>nanoFramework C# csharp netmf netnf nanoFramework.System.Net.Http</tags>
21+
<tags>nanoFramework C# csharp netmf netnf System.Net.Http</tags>
2322
<dependencies>
2423
<dependency id="nanoFramework.CoreLibrary" version="1.10.5-preview.4" />
2524
<dependency id="nanoFramework.Runtime.Events" version="1.9.0-preview.28" />

nanoFramework.System.Net.Http.Server.nuspec

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@
55
<version>$version$</version>
66
<title>nanoFramework.System.Net.Http.Server</title>
77
<authors>nanoFramework project contributors</authors>
8-
<owners>nanoFramework,dotnetfoundation</owners>
8+
<owners>nanoFramework project contributors,dotnetfoundation</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<license type="file">LICENSE.md</license>
1111
<releaseNotes>
1212
</releaseNotes>
1313
<developmentDependency>false</developmentDependency>
14-
<projectUrl>https://github.com/nanoframework/nanoFramework.System.Net.Http</projectUrl>
14+
<projectUrl>https://github.com/nanoframework/System.Net.Http</projectUrl>
1515
<icon>images\nf-logo.png</icon>
16-
<repository type="git" url="https://github.com/nanoframework/nanoFramework.System.Net.Http" commit="$commit$" />
16+
<repository type="git" url="https://github.com/nanoframework/System.Net.Http" commit="$commit$" />
1717
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1818
<description>
19-
This package includes the nanoFramework.System.Net.Http assembly (server API only) for nanoFramework C# projects.
20-
There is also a package with the client API only and another with the full API.
19+
This package includes the System.Net.Http assembly (server API only) for .NET nanoFramework C# projects.&#10;There is also a package with the client API only and another with the full API.
2120
</description>
2221
<tags>nanoFramework C# csharp netmf netnf nanoFramework.System.Net.Http</tags>
2322
<dependencies>

nanoFramework.System.Net.Http.nuspec

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,21 @@
55
<version>$version$</version>
66
<title>nanoFramework.System.Net.Http</title>
77
<authors>nanoFramework project contributors</authors>
8-
<owners>nanoFramework,dotnetfoundation</owners>
8+
<owners>nanoFramework project contributors,dotnetfoundation</owners>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<license type="file">LICENSE.md</license>
1111
<releaseNotes>
1212
</releaseNotes>
1313
<developmentDependency>false</developmentDependency>
14-
<projectUrl>https://github.com/nanoframework/nanoFramework.System.Net.Http</projectUrl>
14+
<projectUrl>https://github.com/nanoframework/System.Net.Http</projectUrl>
1515
<icon>images\nf-logo.png</icon>
16-
<repository type="git" url="https://github.com/nanoframework/nanoFramework.System.Net.Http" commit="$commit$" />
16+
<repository type="git" url="https://github.com/nanoframework/System.Net.Http" commit="$commit$" />
1717
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1818
<description>
19-
This package includes the nanoFramework.System.Net.Http assembly for nanoFramework C# projects.
20-
There are also two other packages with just the client API and just the server API.
19+
This package includes the System.Net.Http assembly for .NET nanoFramework C# projects.&#10;There are also two other packages with just the client API and just the server API.
2120
These are meant to be used when there is the need to use smaller assemblies.
2221
</description>
23-
<tags>nanoFramework C# csharp netmf netnf nanoFramework.System.Net.Http</tags>
22+
<tags>nanoFramework C# csharp netmf netnf System.Net.Http</tags>
2423
<dependencies>
2524
<dependency id="nanoFramework.CoreLibrary" version="1.10.5-preview.4" />
2625
<dependency id="nanoFramework.Runtime.Events" version="1.9.0-preview.28" />

0 commit comments

Comments
 (0)