<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Sandcastle Help File Builder</title><link>http://shfb.codeplex.com/project/feeds/rss</link><description>A standalone GUI and Visual Studio integration package providing full configuration and extensibility for building help files with the Sandcastle tools.</description><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;I certainly did, the &lt;strong&gt;CopyToMedia&lt;/strong&gt; is something else, I check it later. Now this is the way to do;-)&lt;br /&gt;
&lt;h1&gt;Use images, not referenced by &lt;em&gt;MAML&lt;/em&gt; topics&lt;/h1&gt;
Import the [images]-folder into shfb &lt;em&gt;Project Explorer&lt;/em&gt;, not referenced by &lt;em&gt;MAML&lt;/em&gt; topics:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Select &lt;em&gt;Add&lt;/em&gt;  and &lt;em&gt;Existing Folder...&lt;/em&gt; from tree context menu, select the [images]-folder&lt;/li&gt;
&lt;li&gt;For each image-file, set &lt;strong&gt;BuildAction&lt;/strong&gt; from &lt;em&gt;Image&lt;/em&gt; to &lt;em&gt;Content&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;
In shfb, push the &lt;em&gt;Build the help file&lt;/em&gt; button&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
After the build, you have a &amp;lt;appname&amp;gt;.chm help file, with images. Easy :-).&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
/Jonas&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Tue, 21 May 2013 06:18:13 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130521061813A</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;I certainly did, the &lt;strong&gt;CopyToMedia&lt;/strong&gt; is something else, I check it later. Now this is the way to do;-)&lt;br /&gt;
&lt;h1&gt;Use images, not referenced by &lt;em&gt;MAML&lt;/em&gt; topics&lt;/h1&gt;
Import the [images]-folder into shfb &lt;em&gt;Project Explorer&lt;/em&gt;, not referenced by &lt;em&gt;MAML&lt;/em&gt; topics:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Select &lt;em&gt;Add&lt;/em&gt;  and &lt;em&gt;Existing Folder...&lt;/em&gt; from tree context menu, select the [images]-folder&lt;/li&gt;
&lt;li&gt;For each image-file, set &lt;strong&gt;BuildAction&lt;/strong&gt; from &lt;em&gt;Image&lt;/em&gt; to &lt;em&gt;Content&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;
In shfb, push the &lt;em&gt;Build the help file&lt;/em&gt; button&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
After the build, you have a &amp;lt;appname&amp;gt;.chm help file, with images. Easy :-).&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
/Jonas&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Tue, 21 May 2013 06:18:13 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130521061813A</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;I think you missed what I said in my first response.  If these the images are not being used in MAML topics, just set the BuildAction in the SHFB project to &lt;strong&gt;Content&lt;/strong&gt; and place them in an &lt;strong&gt;Images&lt;/strong&gt; folder off the root of the project.  They'll get copied into the working folder automatically and compiled into the help file.&lt;br /&gt;
&lt;br /&gt;
Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EWoodruff</author><pubDate>Mon, 20 May 2013 16:33:45 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520043345P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;I think you missed what I said in my first response.  If these the images are not being used in MAML topics, just set the BuildAction in the SHFB project to &lt;strong&gt;Content&lt;/strong&gt; and place them in an &lt;strong&gt;Images&lt;/strong&gt; folder off the root of the project.  They'll get copied into the working folder automatically and compiled into the help file.&lt;br /&gt;
&lt;br /&gt;
Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EWoodruff</author><pubDate>Mon, 20 May 2013 16:33:45 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520043345P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;&lt;h1&gt;Batch for all help file formats&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
:: 1. In shfb, push the &amp;quot;Build the help file&amp;quot; button
:: 2. In &amp;quot;Build Output&amp;quot; wait for the &amp;quot;Clearing working folder...&amp;quot; output
:: 3. Run this batch file

REM Comment/uncomment in Build selected help file formats
REM HTML Help1 (CHM)
xcopy images\*.* help\Working\Output\HtmlHelp1\images\*.* /q /y
REM MS Help 2 (HxS)
REM xcopy images\*.* help\Working\Output\MSHelp2\images\*.* /q /y
REM MS Help Viewer (MSHC)
REM xcopy images\*.* help\Working\Output\MSHelpViewer\images\*.* /q /y
REM Website (HTML/ASP.NET)
REM xcopy images\*.* help\Working\Output\Website\images\*.* /q /y&lt;/code&gt;&lt;/pre&gt;

I havent verifyed &lt;em&gt;MS help 2&lt;/em&gt; and &lt;em&gt;MS Help Viewer&lt;/em&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 12:06:51 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520120651P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;&lt;h1&gt;Batch for all help file formats&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
:: 1. In shfb, push the &amp;quot;Build the help file&amp;quot; button
:: 2. In &amp;quot;Build Output&amp;quot; wait for the &amp;quot;Clearing working folder...&amp;quot; output
:: 3. Run this batch file

REM Comment/uncomment in Build selected help file formats
REM HTML Help1 (CHM)
xcopy images\*.* help\Working\Output\HtmlHelp1\images\*.* /q /y
REM MS Help 2 (HxS)
REM xcopy images\*.* help\Working\Output\MSHelp2\images\*.* /q /y
REM MS Help Viewer (MSHC)
REM xcopy images\*.* help\Working\Output\MSHelpViewer\images\*.* /q /y
REM Website (HTML/ASP.NET)
REM xcopy images\*.* help\Working\Output\Website\images\*.* /q /y&lt;/code&gt;&lt;/pre&gt;

I havent verifyed &lt;em&gt;MS help 2&lt;/em&gt; and &lt;em&gt;MS Help Viewer&lt;/em&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 12:06:51 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520120651P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Yes! I did'it, with &lt;em&gt;MS help1&lt;/em&gt; file. ;-)&lt;br /&gt;
I did a longshot, when building the help file.&lt;br /&gt;
&lt;h1&gt;Create a batch containing:&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
xcopy images\*.* help\Working\Output\HtmlHelp1\images\*.* /q /y&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Build help file&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;In shfb, push the &lt;em&gt;Build the help file&lt;/em&gt; button&lt;/li&gt;
&lt;li&gt;In &lt;em&gt;Build Output&lt;/em&gt; wait for the &lt;em&gt;Clearing working folder...&lt;/em&gt; output&lt;/li&gt;
&lt;li&gt;
Run the batch file&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
After the build, you have a &amp;lt;appname&amp;gt;.chm help file, with images. Not so easy, but the result was correct.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 10:54:50 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520105450A</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Yes! I did'it, with &lt;em&gt;MS help1&lt;/em&gt; file. ;-)&lt;br /&gt;
I did a longshot, when building the help file.&lt;br /&gt;
&lt;h1&gt;Create a batch containing:&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
xcopy images\*.* help\Working\Output\HtmlHelp1\images\*.* /q /y&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;Build help file&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;In shfb, push the &lt;em&gt;Build the help file&lt;/em&gt; button&lt;/li&gt;
&lt;li&gt;In &lt;em&gt;Build Output&lt;/em&gt; wait for the &lt;em&gt;Clearing working folder...&lt;/em&gt; output&lt;/li&gt;
&lt;li&gt;
Run the batch file&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
After the build, you have a &amp;lt;appname&amp;gt;.chm help file, with images. Not so easy, but the result was correct.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 10:54:50 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520105450A</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
The help file is currently only for internal usage, so I prefere &lt;em&gt;MS Help1&lt;/em&gt; file (one file, easy to use).&lt;br /&gt;
&lt;h1&gt;New file structure&lt;/h1&gt;
I changed my file structure, if I want to produce other help-formats. I imported the [images]-folder into shfb &lt;em&gt;Project Explorer&lt;/em&gt;, and marked the images as &lt;strong&gt;CopyToMedia=True&lt;/strong&gt;. I use &lt;em&gt;.NET Framework 4.5&lt;/em&gt; in &lt;strong&gt;Build&lt;/strong&gt; settings.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;[appname]\
    [doc]\
        [help] (shfb-output, temprary folder)
        [images]\ (images-folder, to use in shfb-build)
        &amp;lt;appname&amp;gt;.shfbproj
        &amp;lt;appname&amp;gt;.chm (copied from [help]-folder)
    [projname]\ (the VS project)
    &amp;lt;appname&amp;gt;.sln&lt;/code&gt;&lt;/pre&gt;

And the [help]-folder (shfb-output) is only used as a temprary folder.&lt;br /&gt;
&lt;h1&gt;Source code documentation&lt;/h1&gt;
The path is relative to the [help] (shfb-output) folder, i guess after your description.&lt;br /&gt;
The images is referenced from XML documentation in source code, like this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;img src=&amp;quot;..\images\ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;SHBF builds&lt;/h1&gt;
I have tryed all build formats, and the only one that I can get to work is &lt;em&gt;Website (HTML/ASP.NET)&lt;/em&gt;, if I manually copy the [images]-folder into the [help]-folder, after a shfb-build. And its okey with a html help. I could do a batch, containing:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
xcopy images\*.* help\images\*.* /q /y
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe &amp;lt;appname&amp;gt;.shfbproj
pause
help\Index.html&lt;/code&gt;&lt;/pre&gt;

And in shfb proj change to include the [projname]&amp;lt;projname&amp;gt;.csproj insted of &amp;lt;appname&amp;gt;.sln, because I get some error running the batch, no problen running in shbf gui. (SHFB : error BE0042: You must specify at least one documentation source)&lt;br /&gt;
&lt;h1&gt;MAML-pages&lt;/h1&gt;
I have not tryed adding/using MAML-pages, but it maybe a better aproach, then I could extend code documentation, with custom Welcome-, History-, Class description-pages, before the code documentation.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 10:11:23 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520101123A</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
The help file is currently only for internal usage, so I prefere &lt;em&gt;MS Help1&lt;/em&gt; file (one file, easy to use).&lt;br /&gt;
&lt;h1&gt;New file structure&lt;/h1&gt;
I changed my file structure, if I want to produce other help-formats. I imported the [images]-folder into shfb &lt;em&gt;Project Explorer&lt;/em&gt;, and marked the images as &lt;strong&gt;CopyToMedia=True&lt;/strong&gt;. I use &lt;em&gt;.NET Framework 4.5&lt;/em&gt; in &lt;strong&gt;Build&lt;/strong&gt; settings.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;[appname]\
    [doc]\
        [help] (shfb-output, temprary folder)
        [images]\ (images-folder, to use in shfb-build)
        &amp;lt;appname&amp;gt;.shfbproj
        &amp;lt;appname&amp;gt;.chm (copied from [help]-folder)
    [projname]\ (the VS project)
    &amp;lt;appname&amp;gt;.sln&lt;/code&gt;&lt;/pre&gt;

And the [help]-folder (shfb-output) is only used as a temprary folder.&lt;br /&gt;
&lt;h1&gt;Source code documentation&lt;/h1&gt;
The path is relative to the [help] (shfb-output) folder, i guess after your description.&lt;br /&gt;
The images is referenced from XML documentation in source code, like this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;img src=&amp;quot;..\images\ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/code&gt;&lt;/pre&gt;

&lt;h1&gt;SHBF builds&lt;/h1&gt;
I have tryed all build formats, and the only one that I can get to work is &lt;em&gt;Website (HTML/ASP.NET)&lt;/em&gt;, if I manually copy the [images]-folder into the [help]-folder, after a shfb-build. And its okey with a html help. I could do a batch, containing:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;@ECHO OFF
xcopy images\*.* help\images\*.* /q /y
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe &amp;lt;appname&amp;gt;.shfbproj
pause
help\Index.html&lt;/code&gt;&lt;/pre&gt;

And in shfb proj change to include the [projname]&amp;lt;projname&amp;gt;.csproj insted of &amp;lt;appname&amp;gt;.sln, because I get some error running the batch, no problen running in shbf gui. (SHFB : error BE0042: You must specify at least one documentation source)&lt;br /&gt;
&lt;h1&gt;MAML-pages&lt;/h1&gt;
I have not tryed adding/using MAML-pages, but it maybe a better aproach, then I could extend code documentation, with custom Welcome-, History-, Class description-pages, before the code documentation.&lt;br /&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Mon, 20 May 2013 10:11:23 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130520101123A</guid></item><item><title>Commented Unassigned: Impossible to reconfigure /Web because of Windows Installer [34068]</title><link>http://shfb.codeplex.com/workitem/34068</link><description>Hello,&lt;br /&gt;&lt;br /&gt;Could you please either make an option to use a non-default &amp;#47;Web or alter the Windows Installer to not try to restore that directory&amp;#63; It makes it impossible to keep modified settings -- every time I change it or remove a file, Windows Installer restores it the next time I run SHFB.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;James&lt;br /&gt;Comments: ** Comment from web user: EWoodruff ** &lt;p&gt;Remember that Windows doesn't really take kindly to modifying files in the Program Files folder anymore, not since Vista as I recall.  I can't change that.  I can probably extend the presentation style definition to allow specification of alternate website files.  Changes you make would then be treated like a custom presentation style and would be copied in from an alternate location.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>EWoodruff</author><pubDate>Sat, 18 May 2013 18:25:26 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Impossible to reconfigure /Web because of Windows Installer [34068] 20130518062526P</guid></item><item><title>Created Unassigned: Impossible to reconfigure /Web because of Windows Installer [34068]</title><link>http://shfb.codeplex.com/workitem/34068</link><description>Hello,&lt;br /&gt;&lt;br /&gt;Could you please either make an option to use a non-default &amp;#47;Web or alter the Windows Installer to not try to restore that directory&amp;#63; It makes it impossible to keep modified settings -- every time I change it or remove a file, Windows Installer restores it the next time I run SHFB.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;James&lt;br /&gt;</description><author>IllusoryStudios</author><pubDate>Sat, 18 May 2013 13:33:30 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Impossible to reconfigure /Web because of Windows Installer [34068] 20130518013330P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;The basePath only relates to the code block component which has no bearing on how images are displayed or referenced.  In relation to imported code blocks, the base path is the project folder.&lt;br /&gt;
&lt;br /&gt;
Bear in mind that when you add an image to a SHFB project, it's default BuildAction is set to Image with the assumption that it will be used in MAML topics.  With that build action, it only gets copied if referenced in a MAML topic and will end up in the Media\ folder.  Setting the CopyToMedia property to true will force it to always get copied to the .\Media folder even if not referenced in MAML topics.&lt;br /&gt;
&lt;br /&gt;
If your intent is to simply use it from XML comments, set its BuildAction property to Content so that it is always copied to the output folder.  If located at the root, it will get copied to the root of the help content.  If in a subfolder, it will get copied to a like-named subfolder in the help content.  From there, the information in the FAQ entry is correct.  Use either a relative path (..\Image.png) or relative path with subfolder (..\Images\Image.png) to access it.&lt;br /&gt;
&lt;br /&gt;
However, if producing MS Help Viewer output, the above may not work as I recall since the viewer modifies the URLs.  I'd have to try it and see if there's a way to make it work.&lt;br /&gt;
&lt;br /&gt;
Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EWoodruff</author><pubDate>Fri, 17 May 2013 19:32:30 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130517073230P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;The basePath only relates to the code block component which has no bearing on how images are displayed or referenced.  In relation to imported code blocks, the base path is the project folder.&lt;br /&gt;
&lt;br /&gt;
Bear in mind that when you add an image to a SHFB project, it's default BuildAction is set to Image with the assumption that it will be used in MAML topics.  With that build action, it only gets copied if referenced in a MAML topic and will end up in the Media\ folder.  Setting the CopyToMedia property to true will force it to always get copied to the .\Media folder even if not referenced in MAML topics.&lt;br /&gt;
&lt;br /&gt;
If your intent is to simply use it from XML comments, set its BuildAction property to Content so that it is always copied to the output folder.  If located at the root, it will get copied to the root of the help content.  If in a subfolder, it will get copied to a like-named subfolder in the help content.  From there, the information in the FAQ entry is correct.  Use either a relative path (..\Image.png) or relative path with subfolder (..\Images\Image.png) to access it.&lt;br /&gt;
&lt;br /&gt;
However, if producing MS Help Viewer output, the above may not work as I recall since the viewer modifies the URLs.  I'd have to try it and see if there's a way to make it work.&lt;br /&gt;
&lt;br /&gt;
Eric&lt;br /&gt;
&lt;/div&gt;</description><author>EWoodruff</author><pubDate>Fri, 17 May 2013 19:32:30 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130517073230P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
I have used &lt;a href="https://shfb.codeplex.com/" rel="nofollow"&gt;SHFB&lt;/a&gt;, to produce code documentation for a while, and now I want to add pictures like class diagram and so on.&lt;br /&gt;
&lt;h1&gt;SHFB - Project Properties&lt;/h1&gt;
In SHFB project settings I have:&lt;br /&gt;
[Paths/Output Paths/Help content output path] = doc\&lt;br /&gt;
(Warning: The output folder will be erased, when building a web-site)&lt;br /&gt;
&lt;h1&gt;My file structure&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;[appname]\
    [doc]\ (shfb-output)
    [img]\ (images)
    [projname]\ (the VS project)
    &amp;lt;appname&amp;gt;.shfbproj
    &amp;lt;appname&amp;gt;.sln&lt;/code&gt;&lt;/pre&gt;

&lt;strong&gt;Description&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;[] - folder&lt;/li&gt;
&lt;li&gt;&amp;lt;&amp;gt; - file&lt;/li&gt;
&lt;li&gt;
() - comment&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;Questions&lt;/h1&gt;
(From SHBF documentation) &amp;quot;The path is relative to the basePath configuration element.&amp;quot;&lt;br /&gt;
&lt;strong&gt;Q: What is the &amp;quot;basePath&amp;quot;?&lt;/strong&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;doc&lt;/li&gt;
&lt;li&gt;doc\Working\Output\HtmlHelp1&lt;/li&gt;
&lt;li&gt;
projname&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;I cant get it to work, only placeholder of image.&lt;/strong&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&amp;lt;img src=&amp;quot;ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/li&gt;
&lt;li&gt;&amp;lt;img src=&amp;quot;../ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/li&gt;
&lt;li&gt;
&amp;lt;img src=&amp;quot;../img/ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;Q: How to add image-path(s) to shfbproj-file&lt;/strong&gt;&lt;br /&gt;
Why: &lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;I would prefere to specify (a list of) image-folder(s), when runing the shfb project&lt;/li&gt;
&lt;li&gt;
In XML doc of code-file only use file name, &amp;lt;img src=&amp;quot;ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;Q: List of supported image formats&lt;/strong&gt;&lt;br /&gt;
?: (gif, jpg, png)&lt;br /&gt;
&lt;h1&gt;Links&lt;/h1&gt;
&lt;strong&gt;SHBF - Discussions&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://shfb.codeplex.com/discussions/360087" rel="nofollow"&gt;Sandcastle help builder - Dead pictures&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://shfb.codeplex.com/discussions/223167" rel="nofollow"&gt;Post-Transform Components for Logo: How to make relative Path &lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;strong&gt;SHFB - FAQ&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.ewoodruff.us/shfbdocs/html/1aea789d-b226-4b39-b534-4c97c256fac8.htm#EmbedImage" rel="nofollow"&gt;How can I embed an image in a namespace, type, or member help topic?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ewoodruff.us/shfbdocs/html/7f03ba39-09f8-4320-bdbd-ed31a3bd885f.htm" rel="nofollow"&gt;Code Block Component&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Fri, 17 May 2013 14:02:10 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130517020210P</guid></item><item><title>New Post: Add images in XML doc</title><link>http://shfb.codeplex.com/discussions/444057</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
I have used &lt;a href="https://shfb.codeplex.com/" rel="nofollow"&gt;SHFB&lt;/a&gt;, to produce code documentation for a while, and now I want to add pictures like class diagram and so on.&lt;br /&gt;
&lt;h1&gt;SHFB - Project Properties&lt;/h1&gt;
In SHFB project settings I have:&lt;br /&gt;
[Paths/Output Paths/Help content output path] = doc\&lt;br /&gt;
(Warning: The output folder will be erased, when building a web-site)&lt;br /&gt;
&lt;h1&gt;My file structure&lt;/h1&gt;
&lt;pre&gt;&lt;code&gt;[appname]\
    [doc]\ (shfb-output)
    [img]\ (images)
    [projname]\ (the VS project)
    &amp;lt;appname&amp;gt;.shfbproj
    &amp;lt;appname&amp;gt;.sln&lt;/code&gt;&lt;/pre&gt;

&lt;strong&gt;Description&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;[] - folder&lt;/li&gt;
&lt;li&gt;&amp;lt;&amp;gt; - file&lt;/li&gt;
&lt;li&gt;
() - comment&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;Questions&lt;/h1&gt;
(From SHBF documentation) &amp;quot;The path is relative to the basePath configuration element.&amp;quot;&lt;br /&gt;
&lt;strong&gt;Q: What is the &amp;quot;basePath&amp;quot;?&lt;/strong&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;doc&lt;/li&gt;
&lt;li&gt;doc\Working\Output\HtmlHelp1&lt;/li&gt;
&lt;li&gt;
projname&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;I cant get it to work, only placeholder of image.&lt;/strong&gt;&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&amp;lt;img src=&amp;quot;ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/li&gt;
&lt;li&gt;&amp;lt;img src=&amp;quot;../ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;/li&gt;
&lt;li&gt;
&amp;lt;img src=&amp;quot;../img/ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;Q: How to add image-path(s) to shfbproj-file&lt;/strong&gt;&lt;br /&gt;
Why: &lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;I would prefere to specify (a list of) image-folder(s), when runing the shfb project&lt;/li&gt;
&lt;li&gt;
In XML doc of code-file only use file name, &amp;lt;img src=&amp;quot;ControlBox.png&amp;quot; alt=&amp;quot;ControlBox Class Diagram&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;strong&gt;Q: List of supported image formats&lt;/strong&gt;&lt;br /&gt;
?: (gif, jpg, png)&lt;br /&gt;
&lt;h1&gt;Links&lt;/h1&gt;
&lt;strong&gt;SHBF - Discussions&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://shfb.codeplex.com/discussions/360087" rel="nofollow"&gt;Sandcastle help builder - Dead pictures&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://shfb.codeplex.com/discussions/223167" rel="nofollow"&gt;Post-Transform Components for Logo: How to make relative Path &lt;/a&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;strong&gt;SHFB - FAQ&lt;/strong&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.ewoodruff.us/shfbdocs/html/1aea789d-b226-4b39-b534-4c97c256fac8.htm#EmbedImage" rel="nofollow"&gt;How can I embed an image in a namespace, type, or member help topic?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.ewoodruff.us/shfbdocs/html/7f03ba39-09f8-4320-bdbd-ed31a3bd885f.htm" rel="nofollow"&gt;Code Block Component&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>Guson</author><pubDate>Fri, 17 May 2013 14:02:10 GMT</pubDate><guid isPermaLink="false">New Post: Add images in XML doc 20130517020210P</guid></item><item><title>Commented Issue: Too small font in member filter in VS2005 website [34061]</title><link>http://shfb.codeplex.com/workitem/34061</link><description>In a VS2005-style website generated with Sandcastle Help File Builder 1.9.7.0, each class has a page that lists its members.  At the top of this page, there is a label &amp;#34;Members&amp;#58; Show All&amp;#34;.  When I hover the mouse pointer over that label, it drops down a list of two check boxes labeled &amp;#34;Include Protected Members&amp;#34; and &amp;#34;Include Inherited Members&amp;#34;.  The font size in these two labels is so small that they are difficult to read.&lt;br /&gt;&lt;br /&gt;In particular, with the default settings of Firefox 21.0 on Windows 7, the font size of &amp;#34;Members&amp;#58; Show All&amp;#34; is 12.3167px, but the font size of &amp;#34;Include Protected Members&amp;#34; and &amp;#34;Include Inherited Members&amp;#34; is only 7.75px.  I think these should be the same size.&lt;br /&gt;&lt;br /&gt;The font size of &amp;#34;Members&amp;#58; Show All&amp;#34; comes from these CSS properties&amp;#58;&lt;br /&gt;1. body &amp;#123; font-size&amp;#58; medium&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42;&amp;#47;&lt;br /&gt;2. div&amp;#35;header table td &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42; 70&amp;#37; &amp;#61; 12.32px &amp;#42;&amp;#47;&lt;br /&gt;&lt;br /&gt;The font size of &amp;#34;Include Protected Members&amp;#34; comes from these CSS properties&amp;#58;&lt;br /&gt;1. body &amp;#123; font-size&amp;#58; medium&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42;&amp;#47;&lt;br /&gt;2. &amp;#35;memberOptionsMenu &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42; 70&amp;#37; &amp;#61; 12.32px &amp;#42;&amp;#47;&lt;br /&gt;3. div&amp;#35;header table td &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 12.32px &amp;#42; 70&amp;#37; &amp;#61; 8.624px &amp;#42;&amp;#47;&lt;br /&gt;4. .checkboxLabel &amp;#123; font-size&amp;#58; 90&amp;#37; &amp;#125; &amp;#47;&amp;#42; 8.624px &amp;#42; 90&amp;#37; &amp;#61; 7.7616px &amp;#42;&amp;#47;&lt;br /&gt;Comments: ** Comment from web user: Takajalka ** &lt;p&gt;Thanks.  With that change, the font of &amp;quot;Include Protected Members&amp;quot; is a little smaller than that of &amp;quot;Members: Show All&amp;quot;, but the difference is only 10% and the text is not too difficult to read.&lt;/p&gt;</description><author>Takajalka</author><pubDate>Fri, 17 May 2013 13:06:04 GMT</pubDate><guid isPermaLink="false">Commented Issue: Too small font in member filter in VS2005 website [34061] 20130517010604P</guid></item><item><title>Created Unassigned: ShowMissingComponent issue [34065]</title><link>http://shfb.codeplex.com/workitem/34065</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve encountered an issue with ShowMissingComponent. Here&amp;#39;s my case&amp;#58; I have a public static class with a private member class implementing a interface method all documented with XML comments. When I build documentation, SHFB is reporting ShowMissingComponent warning.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public static class IPServices&lt;br /&gt;&amp;#123;&lt;br /&gt;  private class ServiceProtocolComparer &amp;#58; IComparer&amp;#60;ServiceProtocol&amp;#62;&lt;br /&gt;  &amp;#123;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47;   ...&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;x&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47;   ...&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;param name&amp;#61;&amp;#34;y&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47;   ...&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;returns&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47;   ...&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;returns&amp;#62;&lt;br /&gt;    int IComparer&amp;#60;ServiceProtocol&amp;#62;.Compare&amp;#40;ServiceProtocol x, ServiceProtocol y&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;      ...&lt;br /&gt;    &amp;#125;&lt;br /&gt;  &amp;#125;&lt;br /&gt;  ...&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Visual Studio 2010 generated XML contents&amp;#58; &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;member name&amp;#61;&amp;#34;M&amp;#58;IMiS.Net.IPServices.ServiceProtocolComparer.System&amp;#35;Collections&amp;#35;Generic&amp;#35;IComparer&amp;#123;IMiS&amp;#35;Net&amp;#35;IPServices&amp;#35;ServiceProtocol&amp;#125;&amp;#35;Compare&amp;#40;IMiS.Net.IPServices.ServiceProtocol,IMiS.Net.IPServices.ServiceProtocol&amp;#41;&amp;#34;&amp;#62;&lt;br /&gt;  &amp;#60;summary&amp;#62;&lt;br /&gt;   ...&lt;br /&gt;  &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;  &amp;#60;param name&amp;#61;&amp;#34;x&amp;#34;&amp;#62;&lt;br /&gt;    ...&lt;br /&gt;  &amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;  &amp;#60;param name&amp;#61;&amp;#34;y&amp;#34;&amp;#62;&lt;br /&gt;    ...&lt;br /&gt;  &amp;#60;&amp;#47;param&amp;#62;&lt;br /&gt;  &amp;#60;returns&amp;#62;&lt;br /&gt;    ...&lt;br /&gt;  &amp;#60;&amp;#47;returns&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;member&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;SHFB output log&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Warn&amp;#58; ShowMissingComponent&amp;#58; &amp;#91;M&amp;#58;IMiS.Net.IPServices.ServiceProtocolComparer.System&amp;#35;Collections&amp;#35;Generic&amp;#35;IComparer&amp;#123;&amp;#123;IMiS&amp;#35;Net&amp;#35;IPServices&amp;#43;ServiceProtocol&amp;#125;&amp;#125;&amp;#35;Compare&amp;#40;IMiS.Net.IPServices.ServiceProtocol,IMiS.Net.IPServices.ServiceProtocol&amp;#41;&amp;#93; Missing &amp;#60;summary&amp;#62; documentation&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;As seen above, there is a difference in member name. In the generated XML there is a &amp;#123;IMiS&amp;#35;Net&amp;#35;IPServices&amp;#35;ServiceProtocol&amp;#125; and in output log &amp;#123;&amp;#123;IMiS&amp;#35;Net&amp;#35;IPServices&amp;#43;ServiceProtocol&amp;#125;&amp;#125;. Notice the double curly braces &amp;#40;&amp;#123;&amp;#125;&amp;#41; and a plus &amp;#40;&amp;#43;&amp;#41; sign.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve used both SHFB v1.9.6.0 and v1.9.7.0 and both have same issue. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m using VS2010 presentation style and including the following API elements in the documentation&amp;#58; Expicit interface implementations, Internal members, Private members, Protected members, Protected members of sealed classes.&lt;br /&gt;&lt;br /&gt;I there a easy way I could fix this&amp;#63; Great work btw &amp;#59;&amp;#41;&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;br /&gt;Robert&lt;br /&gt;</description><author>rpcode</author><pubDate>Fri, 17 May 2013 13:04:31 GMT</pubDate><guid isPermaLink="false">Created Unassigned: ShowMissingComponent issue [34065] 20130517010431P</guid></item><item><title>Closed Issue: Too small font in member filter in VS2005 website [34061]</title><link>http://shfb.codeplex.com/workitem/34061</link><description>In a VS2005-style website generated with Sandcastle Help File Builder 1.9.7.0, each class has a page that lists its members.  At the top of this page, there is a label &amp;#34;Members&amp;#58; Show All&amp;#34;.  When I hover the mouse pointer over that label, it drops down a list of two check boxes labeled &amp;#34;Include Protected Members&amp;#34; and &amp;#34;Include Inherited Members&amp;#34;.  The font size in these two labels is so small that they are difficult to read.&lt;br /&gt;&lt;br /&gt;In particular, with the default settings of Firefox 21.0 on Windows 7, the font size of &amp;#34;Members&amp;#58; Show All&amp;#34; is 12.3167px, but the font size of &amp;#34;Include Protected Members&amp;#34; and &amp;#34;Include Inherited Members&amp;#34; is only 7.75px.  I think these should be the same size.&lt;br /&gt;&lt;br /&gt;The font size of &amp;#34;Members&amp;#58; Show All&amp;#34; comes from these CSS properties&amp;#58;&lt;br /&gt;1. body &amp;#123; font-size&amp;#58; medium&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42;&amp;#47;&lt;br /&gt;2. div&amp;#35;header table td &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42; 70&amp;#37; &amp;#61; 12.32px &amp;#42;&amp;#47;&lt;br /&gt;&lt;br /&gt;The font size of &amp;#34;Include Protected Members&amp;#34; comes from these CSS properties&amp;#58;&lt;br /&gt;1. body &amp;#123; font-size&amp;#58; medium&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42;&amp;#47;&lt;br /&gt;2. &amp;#35;memberOptionsMenu &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 17.6px &amp;#42; 70&amp;#37; &amp;#61; 12.32px &amp;#42;&amp;#47;&lt;br /&gt;3. div&amp;#35;header table td &amp;#123; font-size&amp;#58; 70&amp;#37;&amp;#59; &amp;#125; &amp;#47;&amp;#42; 12.32px &amp;#42; 70&amp;#37; &amp;#61; 8.624px &amp;#42;&amp;#47;&lt;br /&gt;4. .checkboxLabel &amp;#123; font-size&amp;#58; 90&amp;#37; &amp;#125; &amp;#47;&amp;#42; 8.624px &amp;#42; 90&amp;#37; &amp;#61; 7.7616px &amp;#42;&amp;#47;&lt;br /&gt;Comments: Changed the font size setting in the devlangsMenu, memberOptionsMenu, and memberFrameworksMenu CSS styles in Presentation.css to 100% which makes them readable.</description><author>EWoodruff</author><pubDate>Fri, 17 May 2013 02:07:02 GMT</pubDate><guid isPermaLink="false">Closed Issue: Too small font in member filter in VS2005 website [34061] 20130517020702A</guid></item><item><title>Closed Issue: Index.html casing [34035]</title><link>http://shfb.codeplex.com/workitem/34035</link><description>Hello,&lt;br /&gt;&lt;br /&gt;On Unix servers, SHFB&amp;#39;s default Index.html is a problem. Could you please rename it index.html&amp;#63; Case sensitivity and all.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;James&lt;br /&gt;Comments: Renamed as requested.</description><author>EWoodruff</author><pubDate>Fri, 17 May 2013 02:05:00 GMT</pubDate><guid isPermaLink="false">Closed Issue: Index.html casing [34035] 20130517020500A</guid></item></channel></rss>