Error NU5012 – nuget pack unable to find path (/bin/release/MyProject/bin/release)
TL;DR For the new <Project Sdk=”Microsoft.NET.Sdk”> .csproj file format, use dotnet pack to build NuGet packages, even if they target .Net Framework or if the project is multi-targeted. Run this from the directory containing your .csproj (and optionally a .nuspec) dotnet pack MyProject.csproj -c Release Note that by default dotnet pack places the output .nupkg … Read more