[commit] r2539 - in trunk: Install SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Properties
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Thu Sep 25 12:10:19 CDT 2014
Author: ksmyth
Date: Thu Sep 25 12:10:18 2014
New Revision: 2539
Log:
CSharpDsmlGenerator: Fix XML doc for Connecton.SrcEnds and DstEnds
Modified:
trunk/Install/GME_SDK.wxs
trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/CSharpDSMLGenerator.csproj
trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/Configuration.cs
trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/FcoSrcDstEnd.cs
trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Properties/AssemblyInfo.cs
trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/app.manifest
Modified: trunk/Install/GME_SDK.wxs
==============================================================================
--- trunk/Install/GME_SDK.wxs Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/Install/GME_SDK.wxs Thu Sep 25 12:10:18 2014 (r2539)
@@ -187,7 +187,7 @@
</Class>
<RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\Implemented Categories\{62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}" Value="" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\InprocServer32" Name="Class" Value="CSharpDSMLGenerator.CSharpDSMLGeneratorInterpreter" Type="string" Action="write" />
- <RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\InprocServer32" Name="Assembly" Value="CSharpDSMLGenerator, Version=1.0.14.2, Culture=neutral" Type="string" Action="write" />
+ <RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\InprocServer32" Name="Assembly" Value="CSharpDSMLGenerator, Version=1.0.14.3, Culture=neutral" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\InprocServer32" Name="RuntimeVersion" Value="v4.0.30319" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="CLSID\{78BE7B95-3564-4BA9-8FE6-8D9B91EEE0B8}\InprocServer32" Name="CodeBase" Value="file:///[#CSharpDSMLGenerator.dll]" Type="string" Action="write" />
<RegistryValue Root="HKCR" Key="Component Categories\{62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}" Name="0" Value=".NET Category" Type="string" Action="write" />
Modified: trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/CSharpDSMLGenerator.csproj
==============================================================================
--- trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/CSharpDSMLGenerator.csproj Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/CSharpDSMLGenerator.csproj Thu Sep 25 12:10:18 2014 (r2539)
@@ -144,7 +144,9 @@
<ItemGroup>
<None Include="app.manifest" />
<None Include="AssemblySignature.snk" />
- <None Include="GME.DSMLGenerator.nuspec" />
+ <None Include="GME.DSMLGenerator.nuspec">
+ <SubType>Designer</SubType>
+ </None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
Modified: trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/Configuration.cs
==============================================================================
--- trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/Configuration.cs Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/Configuration.cs Thu Sep 25 12:10:18 2014 (r2539)
@@ -171,19 +171,31 @@
<para></para>
</summary>";
- public const string SrcConnections =
+ public const string SrcConnections =
@"<summary>
<para>Retrieves all connections, which have this object as a DESTINATION.</para>
<para></para>
</summary>";
- public const string DstConnections =
+ public const string DstConnections =
@"<summary>
<para>Retrieves all connections, which have this object as a SOURCE.</para>
<para></para>
</summary>";
- public const string ParentContainer =
+ public const string SrcConnectionEnd =
+@"<summary>
+<para>Contains the domain specific source end point of this connection.</para>
+<para></para>
+</summary>";
+
+ public const string DstConnectionEnd =
+@"<summary>
+<para>Contains the domain specific destination end point of this connection.</para>
+<para></para>
+</summary>";
+
+ public const string ParentContainer =
@"<para>Represents the domain specific parent container.</para>
<para></para>";
}
Modified: trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/FcoSrcDstEnd.cs
==============================================================================
--- trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/FcoSrcDstEnd.cs Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Generator/FcoSrcDstEnd.cs Thu Sep 25 12:10:18 2014 (r2539)
@@ -382,7 +382,7 @@
};
newSrcConnections.Comments.Add(
- new CodeCommentStatement(Configuration.Comments.SrcConnections, true));
+ new CodeCommentStatement(Configuration.Comments.SrcConnectionEnd, true));
if (baseClassesWoObject.Any(x => x.MetaBase.MetaRef == Subject.MetaBase.MetaRef))
@@ -424,7 +424,7 @@
};
newDstConnections.Comments.Add(
- new CodeCommentStatement(Configuration.Comments.DstConnections, true));
+ new CodeCommentStatement(Configuration.Comments.DstConnectionEnd, true));
if (baseClassesWoObject.Any(x => x.MetaBase.MetaRef == Subject.MetaBase.MetaRef))
{
Modified: trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Properties/AssemblyInfo.cs
==============================================================================
--- trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Properties/AssemblyInfo.cs Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/Properties/AssemblyInfo.cs Thu Sep 25 12:10:18 2014 (r2539)
@@ -35,5 +35,5 @@
// Keep in sync with app.manifest, GME_SDK.wxs, and GME.DSMLGenerator.nuspec
// Do not end with .0: NuGet gallery will strip it!
-[assembly: AssemblyVersion("1.0.14.2")]
-[assembly: AssemblyFileVersion("1.0.14.2")]
+[assembly: AssemblyVersion("1.0.14.3")]
+[assembly: AssemblyFileVersion("1.0.14.3")]
Modified: trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/app.manifest
==============================================================================
--- trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/app.manifest Wed Sep 24 10:27:34 2014 (r2538)
+++ trunk/SDK/DotNet/DsmlGenerator/CSharpDsmlGenerator/app.manifest Thu Sep 25 12:10:18 2014 (r2539)
@@ -3,7 +3,7 @@
<assemblyIdentity
type="win32"
name="CSharpDSMLGenerator"
- version="1.0.14.2"
+ version="1.0.14.3"
publicKeyToken="1321e6b92842fe54"
processorArchitecture="msil" />
<clrClass
More information about the gme-commit
mailing list