authors | title | lastmod | date | license | type | slug | project | description | |
---|---|---|---|---|---|---|---|---|---|
|
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. |
This is a simple MSBuild task that allows you to push a NuGet package to a NuGet server.
=== "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>