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.
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.