Advanced Search
Search Results
6 total results found
Missing AspNetCore Nuget Packages
There are several aspects of an ASP Net Core web API that cannot be placed in a class library without a little extra care. This is because Microsoft decided to remove “many of the core assemblies” from nuget packages for the ASPNetCore, when Net Core 3.0 was p...
How To Add Release Notes to Nuget Package
These are the steps needed to include release notes in a Nuget package. These are taken from this article:Writing a NuGet package release notes in an outside of a .csproj file. Same article here:Writing a NuGet package release notes in an outside of a .csproj...
.NET How to Create and Publish Nuget Package
Taken from here: docs.microsoft.com-nuget/docs/quickstart/create-and-publish-a-package-using-the-dotnet-cli.md at main · NuGet/docs.microsoft.com-nuget Here is more content on additional properties for a nuget package: docs.microsoft.com-nuget/docs/referenc...
Nuget Package Reference
Here’s the golden reference for all things Nuget: docs.microsoft.com-nuget/docs at main · NuGet/docs.microsoft.com-nuget How to publish NuGet symbol packages using the new symbol package format '.snupkg' Non-Trivial Multi-Targeting with .NET Multi-targetin...
Nuget Build and Publish Scripts for Multiple Targets
Here’s a set of basic command line steps to run, to generate a nuget package for a library or an executable. NOTE: These statements are for projects that target multiple runtimes. So, they can be simplified for a single runtime or single target framework. Fo...
Create Nuget for Multiple Targets or Architectures
Creating nuget packages that contain libraries for multiple frameworks or runtimes, requires some non-trivial effort.So, this page explains the steps required. Some of this was taken from here: Non-Trivial Multi-Targeting with .NET Project Setup For multipl...