aspnetcore/breaking-changes/8/trimmode-full.md
Trimming now trims all assemblies in applications that target the Web SDK, by default. This change only affects apps that are published with PublishTrimmed=true, and it only breaks apps that had existing trim warnings.
ASP.NET Core 8.0 Preview 7
Previously, TrimMode=partial was set by default for all projects that targeted the Web SDK.
Starting in .NET 8, all the assemblies in the app are trimmed, by default. Apps that previously worked with PublishTrimmed=true and TrimMode=partial might not work in .NET 8 and later versions. However, only apps with trim warnings are affected. If your app has no trim warnings, the change in behavior shouldn't cause any adverse effects.
This change can affect source compatibility.
This change helps to decrease app size without users having to explicitly opt in. It also aligns with user expectations that the entire app is trimmed unless noted otherwise.
The best resolution is to resolve all the trim warnings in your application. For information about resolving the warnings in your own libraries, see Introduction to trim warnings.
To revert to the previous behavior, set the TrimMode property to partial.
<TrimMode>partial</TrimMode>
None.