Here are the pre-requisits to use Sandcastle documentation:
Sandcastle is the tool for creating a code documentation, you can use the given examples to generate your documentation, everything works fine but all the documentation is in english.
How could I update that to have everything in french for example?
The solution is based on updating the xml files of the content folder of the choosen style.
Here are examples of steps for having your documentation in french:
<!--
<
</
with this code:
<!-- Updated code -->
<component type="Microsoft.Ddue.Tools.SharedContentComponent" assembly="%DXROOT%\ProductionTools\BuildComponents.dll"> <content file="%DXROOT%\Presentation\Prototype\content\shared_content_FR.xml" /> <content file="%DXROOT%\Presentation\Prototype\content\reference_content_FR.xml" /> <content file="%DXROOT%\Presentation\Shared\content\syntax_content_FR.xml" /> </component>
<component type="Microsoft.Ddue.Tools.SharedContentComponent" assembly="%DXROOT%\ProductionTools\BuildComponents.dll">
<content file="%DXROOT%\Presentation\Prototype\content\shared_content_FR.xml" /> <content file="%DXROOT%\Presentation\Prototype\content\reference_content_FR.xml" /> <content file="%DXROOT%\Presentation\Shared\content\syntax_content_FR.xml" />
<content file="%DXROOT%\Presentation\Prototype\content\shared_content_FR.xml" />
<content file="%DXROOT%\Presentation\Prototype\content\reference_content_FR.xml" />
<content file="%DXROOT%\Presentation\Shared\content\syntax_content_FR.xml" />
</component>
Now you just have to try.
Benoît