[Mono-list] Problems with updater.exe
Giuseppe Greco
giuseppe.greco@agamura.com
Tue, 03 May 2005 21:19:11 +0200
--=-WI5dkbWkdG+o7eETsI81
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
On Tue, 2005-05-03 at 07:58 -0400, Joshua Tauberer wrote:
> Giuseppe Greco wrote:
> > Yes, I know, but the following command should do what updater.exe did...
> > isn't it?
> >
> > monodoc --update myapp.exe -o doc/sdk
>
> Yeah, don't use that. That's deprecated.
Okay, Thanks.
I've stated that monodocs2html.exe does not handle
<see cref="My.Class" /> nodes... is that by design
or will be implemented later?
Just try to process the attached XML file with
monodocs2html.exe and you'll see what I mean.
Anyway, thank you very much for your valuable support
and for the nice stuff you implemented.
j3d.
>
--
----------------------------------------
Giuseppe Greco
::agamura::
phone: +41 (0)91 604 67 65
mobile: +41 (0)79 602 99 27
email: giuseppe.greco@agamura.com
web: www.agamura.com
----------------------------------------
--=-WI5dkbWkdG+o7eETsI81
Content-Disposition: attachment; filename=ResourceUtils.xml
Content-Type: text/xml; name=ResourceUtils.xml; charset=UTF-8
Content-Transfer-Encoding: 7bit
<Type Name="ResourceUtils" FullName="Thermota.Core.Util.ResourceUtils">
<TypeSignature Language="C#" Value="public sealed class ResourceUtils" />
<AssemblyInfo>
<AssemblyName>Thermota.Core</AssemblyName>
<AssemblyVersion>1.0.1216.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Members>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public static string GetString (string name);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">
A <see cref="System.String" /> that contains the name of the resource
to get.
</param>
<summary>
Returns the value of the specified string resource.
</summary>
<returns>
A <see cref="System.String" /> that contains the value of the resource
localized for the current culture.
</returns>
<remarks>
The returned resource is localized for the cultural settings of the
current <see cref="System.Threading.Thread" />.
<note>The <c>GetString</c> method is thread-safe.</note>
</remarks>
<example>
The following example demonstrates the <c>GetString</c> method using
the cultural settings of the current <see cref="System.Threading.Thread" />.
<code><![CDATA[
string localizedString = ResourceUtils.GetString("String_HelloWorld");
]]></code>
</example>
</Docs>
</Member>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public static string GetString (string name, System.Globalization.CultureInfo culture);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="culture" Type="System.Globalization.CultureInfo" />
</Parameters>
<Docs>
<param name="name">
A <see cref="System.String" /> that contains the name of the resource
to get.
</param>
<param name="culture">
A <see cref="System.Globalization.CultureInfo" /> that represents the
culture for which the resource is localized.
</param>
<summary>
Returns the value of the specified string resource localized for the
specified culture.
</summary>
<returns>
A <see cref="System.String" /> that contains the value of the resource
localized for the specified culture.
</returns>
<remarks>
<note>The <c>GetString</c> method is thread-safe.</note>
</remarks>
<example>
The following example demonstrates the <c>GetString</c> method using
a specific culture.
<code><![CDATA[
CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US");
string localizedString = ResourceUtils.GetString("String_HelloWorld", culture);
]]></code>
</example>
</Docs>
</Member>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public static string GetString (string name, System.Globalization.CultureInfo culture, System.Reflection.Assembly assembly);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="culture" Type="System.Globalization.CultureInfo" />
<Parameter Name="assembly" Type="System.Reflection.Assembly" />
</Parameters>
<Docs>
<param name="name">
A <see cref="System.String" /> that contains the name of the resource
to get.
</param>
<param name="culture">
A <see cref="System.Globalization.CultureInfo" /> that represents the
culture for which the resource is localized.
</param>
<param name="assembly">
<see cref="System.Reflection.Assembly" /> that represents the
assembly from which the string resource is obtained.
</param>
<summary>
Returns the value of the specified string resource from the specified
assembly localized for the specified culture.
</summary>
<returns>
A <see cref="System.String" /> that contains the value of the resource
obtained from the specified assembly and localized for the specified
culture.
</returns>
<remarks>
<note>The <c>GetString</c> method is thread-safe.</note>
</remarks>
<example>
The following example demonstrates the <c>GetString</c> method using
specific culture and assembly.
<code><![CDATA[
CultureInfo culture = CultureInfo.CreateSpecificCulture("en-US");
Assembly assembly = Assembly.GetCallingAssembly();
string localizedString = ResourceUtils.GetString("String_HelloWorld", culture, assembly);
]]></code>
</example>
</Docs>
</Member>
<Member MemberName="RegisterSharedAssembly">
<MemberSignature Language="C#" Value="public static void RegisterSharedAssembly (System.Reflection.Assembly assembly);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="assembly" Type="System.Reflection.Assembly" />
</Parameters>
<Docs>
<param name="assembly">
A <see cref="System.Reflection.Assembly" /> that represents the
assembly to register.
</param>
<summary>
Registers the specified assembly to be used as the fallback if
resources are not found in the local satellite assembly.
</summary>
<example>
The following example shows how to register a shared satellite
assembly.
<code><![CDATA[
Assembly sharedAssembly = Assembly.Load("MyResources.dll");
ResourceUtils.RegisterSharedAssembly(sharedAssembly);
]]></code>
</example>
</Docs>
</Member>
</Members>
<Docs>
<summary>
Provides resource support to Thermota assemblies. This class
cannot be inherited.
</summary>
</Docs>
</Type>
--=-WI5dkbWkdG+o7eETsI81--