Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Error Message
The error NETSDK1144 is reported when an error occurs in the trimming process. The full error message is similar to the following example:
Optimizing assemblies for size failed. Optimization can be disabled by setting the
PublishTrimmedproperty to false.
To disable trimming, set the PublishTrimmed property to false in the project file or the command line:
<PropertyGroup>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
dotnet publish /p:PublishTrimmed=false
Here's an example of a .csproj file with trimming disabled:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>linux-arm</RuntimeIdentifier>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
</Project>