NETSDK1195: Trimming, or code compatibility analysis for trimming, single-file deployment, or ahead-of-time compilation is not supported for the target framework.
NETSDK1195 indicates that you're using a feature of the SDK which is not available for the selected target framework. The following features depend on the ILLink pack, which is only available when targeting netcoreapp3.0
and above:
- Trimming (via
PublishTrimmed
orPublishAot
) - Trim analysis (via
PublishTrimmed
,PublishAot
,IsTrimmable
,IsAotCompatible
, orEnableTrimAnalyzer
) - Single-file analysis (via
PublishSingleFile
orEnableSingleFileAnalyzer
) - Ahead-of-time compilation analysis (via
PublishAot
orEnableAotAnalyzer
)
To resolve this error, either target a supported TargetFramework
, or turn off the setting that requires the ILLink pack.
Spolupráca s nami v službe GitHub
Zdroj tohto obsahu nájdete v službe GitHub, kde môžete vytvárať a skúmať problémy a žiadosti o prijatie zmien. Ďalšie informácie nájdete v našom sprievodcovi prispievateľom.