Closed phkiener closed 1 year ago
Right now, packing involves invoking dotnet pack with the correct path to the .nuspec files.
dotnet pack
.nuspec
I'd love to:
.csproj
In the end, I want the packing process to be as simple as doing dotnet pack -c Release -o packages/ in the repository root.
dotnet pack -c Release -o packages/
Right now, packing involves invoking
dotnet pack
with the correct path to the.nuspec
files.I'd love to:
.nuspec
files, having all metadata inside the.csproj
filesIn the end, I want the packing process to be as simple as doing
dotnet pack -c Release -o packages/
in the repository root.