You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just to document my findings for if they're needed in the future.
The windows build currently uses nuget.exe to make the resultant package. It should use dotnet pack instead since nuget.exe is deprecated. So are some of the options in the .nuspec such as iconUrl and the net45 target for files (we don't use net45).
However, .nuspec itself is deprecated when using dotnet pack, so these should all be moved into the .csproj (and would remove the requirement for <IsPackable>).
The text was updated successfully, but these errors were encountered:
Just to be clear, if you're planning on sticking with Squirrel you should probably migrate to the Squirrel.exe pack command rather than the dotnet pack command.
This is just to document my findings for if they're needed in the future.
The windows build currently uses
nuget.exe
to make the resultant package. It should usedotnet pack
instead sincenuget.exe
is deprecated. So are some of the options in the.nuspec
such asiconUrl
and thenet45
target for files (we don't usenet45
).The following seems to work:
However,
.nuspec
itself is deprecated when usingdotnet pack
, so these should all be moved into the.csproj
(and would remove the requirement for<IsPackable>
).The text was updated successfully, but these errors were encountered: