# IntelliSenseLocalizer 中文文档 a tool for generate and install Localized IntelliSense files. 用于生成和安装本地化IntelliSense文件的工具。
Before .net6
we can download the localized .NET IntelliSense files from this page - Download localized .NET IntelliSense files. But long after .net6
was released. This page did not add the localized .NET IntelliSense files for .net6
. According to this issue in dotnet/docs
there is no localized .NET IntelliSense files any more - "Yes, unfortunately, we will no longer be localizing IntelliSense.
". But the online docs has the localized descriptions. So this tool was born.
IntelliSenseLocalizer
use the online docs to generate Localized IntelliSense files. This tool will download all api pages and analysis the content to match the origin IntelliSense file content and generate the target xml
.
Benefit from online docs's nice localization and uniform page layout. This tool can theoretically generate all locale's file. But when the page layout change this tool cannot automatically adapt to the new layout
.
dotnet tool install -g islocalizer
islocalizer -h
to see more command and helps.Append the argument -h at the end of the command to view the help of the command. eg:
islocalizer install auto -h
islocalizer cache -h
This command try get the Localized IntelliSense files from nuget.org what moniker is net6.0
and locale is zh-cn
. And install it:
islocalizer install auto -m net6.0 -l zh-cn
Also you can set the ContentCompareType by -cc
islocalizer install auto -m net6.0 -l zh-cn -cc LocaleFirst
build files about net6.0
:
islocalizer build -m net6.0
This command may take a whole day... But when cached all page it will be completed faster. The archive package will be saved in the default output directory. You can found the path in console.
islocalizer install {ArchivePackagePath}
ArchivePackagePath
is the path of the archive package that you builded.