Co-authored-by: James Newton-King <james@newtonking.com>
This commit is contained in:
Sébastien Ros 2022-05-18 23:07:46 -07:00 коммит произвёл GitHub
Родитель 4626d04b6c
Коммит db319938d8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -20,8 +20,8 @@ The first step to trimming an ASP.NET Core assembly is adding it to `Linkability
1. Update the project file to enable trimming by adding `<IsTrimmable>true</IsTrimmable>`. This property configures the build to add metadata to the assembly to indicate it supports trimming. It also enables trimming analysis on the project.
2. Run `eng/scripts/GenerateProjectList.ps1` to update the list of projects that are known to be trimmable. The script adds the project to the list of known trimmable projects at [`eng/TrimmableProjects.props`](../eng/TrimmableProjects.props).
3. Open `Tools.slnf`
4. Add the project to `Tools.slnf`.
3. Open `src/Tools/Tools.slnf`
4. Add the project to `Tools.slnf`:
1. Right-click `LinkabilityCheck` and select *Load Direct Dependencies*.
2. Update the solution filter.
5. Build `LinkabilityChecker`.