Skip to content

dgmjr-io/NuGetPush

This branch is up to date with main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ccbbf75 · Oct 8, 2024

History

89 Commits
May 31, 2023
Aug 5, 2024
Dec 22, 2023
Aug 7, 2024
Aug 7, 2024
Aug 7, 2024
Oct 8, 2024
Aug 7, 2024
May 31, 2023
Oct 8, 2024
Mar 10, 2023
Feb 4, 2024
Oct 8, 2024
Oct 8, 2024
Feb 4, 2024
Feb 4, 2024
Sep 30, 2023

Repository files navigation

authors title lastmod date license type slug project description
dgmjr
NuGetPush Readme
2022-11-27 05:00:50 UTC
2022-11-27 05:00:49 UTC
MIT
readme
nugetpush-readme
shared
This is a simple MSBuild task that allows you to push a NuGet package to a NuGet server.

NuGet Push

This is a simple MSBuild task that allows you to push a NuGet package to a NuGet server.

Getting Started

=== "Using global.json"

You can reference the SDK in your global.json file:

"msbuild-sdks": {
  "NuGetPush": "<VERSION>"
}

=== "Using the Sdk project element

You can also refer to the SDK with an Sdk project element.

!!! Note "If you select this way, you need to supply it with a version number."

<Project Sdk="Microsoft.NET.Sdk">
  <Sdk Name="NuGetPush" Version="<VERSION>" />
</Project>