NETSDK1144: Optimizing assemblies for size failed
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
PublishTrimmed
property 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>
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.