mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 21:32:52 +00:00
Error NETSDK1045 #133
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SuperJMN on GitHub (May 23, 2023).
I suspect this is because the tool doesn't support packagin .NET 7 projects yet.
But my main concern is, why does the tool depend on the version of the project it packs? It's like file compression tool being able to compress certain files. It looks arbitrary.
What's the reason behind it?
@bqstony commented on GitHub (Dec 14, 2025):
I have the same problem with .net 10. Also after creating a global.json with the sdk version. My solution was to call the following command
dotnet publish app\app.csproj --framework net10.0 --configuration Release --self-contained true --runtime linux-x64 -t:CreateDeb@SuperJMN commented on GitHub (Dec 14, 2025):
I ended up creating my own tool DotnetPackaging https://github.com/SuperJMN/DotNetPackaging