[mapguide-commits] r6030 - in trunk/Tools/Maestro: Maestro
MaestroAPITestRunner OSGeo.MapGuide.MaestroAPI/Feature
OSGeo.MapGuide.MaestroAPI/Resource
OSGeo.MapGuide.MaestroAPI/SchemaOverrides
svn_mapguide at osgeo.org
svn_mapguide at osgeo.org
Thu Aug 4 07:56:09 EDT 2011
Author: jng
Date: 2011-08-04 04:56:09 -0700 (Thu, 04 Aug 2011)
New Revision: 6030
Modified:
trunk/Tools/Maestro/Maestro/Maestro.csproj
trunk/Tools/Maestro/MaestroAPITestRunner/App.config
trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Feature/FeatureBase.cs
trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Resource/IResource.cs
trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/SchemaOverrides/GdalRasterItem.cs
Log:
Fix assorted warnings and commentary updates
Modified: trunk/Tools/Maestro/Maestro/Maestro.csproj
===================================================================
--- trunk/Tools/Maestro/Maestro/Maestro.csproj 2011-08-04 11:10:46 UTC (rev 6029)
+++ trunk/Tools/Maestro/Maestro/Maestro.csproj 2011-08-04 11:56:09 UTC (rev 6030)
@@ -67,6 +67,10 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\SDK\bin\MapGuideDotNetApi.dll</HintPath>
</Reference>
+ <Reference Include="NetTopologySuite.Merged, Version=1.8.0.0, Culture=neutral, PublicKeyToken=f526c48929fda856, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\Thirdparty\NTS\NetTopologySuite.Merged.dll</HintPath>
+ </Reference>
<Reference Include="OSGeo.MapGuide.ExtendedObjectModels, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\SDK\bin\OSGeo.MapGuide.ExtendedObjectModels.dll</HintPath>
@@ -89,14 +93,6 @@
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
- <Reference Include="Topology, Version=1.0.8.24721, Culture=neutral, PublicKeyToken=f526c48929fda856, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\SDK\bin\Topology.dll</HintPath>
- </Reference>
- <Reference Include="Topology.IO.MapGuide, Version=1.0.8.40022, Culture=neutral, PublicKeyToken=f526c48929fda856, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\SDK\bin\Topology.IO.MapGuide.dll</HintPath>
- </Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\Properties\GlobalAssemblyInfo.cs">
Modified: trunk/Tools/Maestro/MaestroAPITestRunner/App.config
===================================================================
--- trunk/Tools/Maestro/MaestroAPITestRunner/App.config 2011-08-04 11:10:46 UTC (rev 6029)
+++ trunk/Tools/Maestro/MaestroAPITestRunner/App.config 2011-08-04 11:56:09 UTC (rev 6030)
@@ -1,10 +1,5 @@
<?xml version="1.0"?>
<configuration>
- <system.net>
- <defaultProxy>
- <proxy bypassonlocal="false" usesystemdefault="true"/>
- </defaultProxy>
- </system.net>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
@@ -15,10 +10,6 @@
<bindingRedirect oldVersion="2.0.0.2308" newVersion="1.0.0.1"/>
</dependentAssembly>
- <dependentAssembly>
- <assemblyIdentity name="MapGuideDotNetApi" publicKeyToken="F526C48929FDA856" culture="neutral"/>
- <bindingRedirect oldVersion="0.0.0.0-2.0.0.2308" newVersion="2.0.0.2308"/>
- </dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Feature/FeatureBase.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Feature/FeatureBase.cs 2011-08-04 11:10:46 UTC (rev 6029)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Feature/FeatureBase.cs 2011-08-04 11:56:09 UTC (rev 6030)
@@ -32,11 +32,6 @@
{
private ClassDefinition _clsDef;
- public PropertyValue GetValue(string name)
- {
- return _values[name];
- }
-
public FeatureBase(ClassDefinition clsDef) : base()
{
_clsDef = clsDef;
Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Resource/IResource.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Resource/IResource.cs 2011-08-04 11:10:46 UTC (rev 6029)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Resource/IResource.cs 2011-08-04 11:56:09 UTC (rev 6030)
@@ -58,14 +58,16 @@
ResourceTypes ResourceType { get; }
/// <summary>
- /// Serializes this instance.
+ /// Serializes this instance to XML and returns the XML content. It is not recommended to call this method directly
+ /// instead use <see cref="M:OSGeo.MapGuide.MaestroAPI.ResourceTypeRegistry.Serialize"/> as that will invoke any pre-serialization
+ /// hooks that may have been set up for this particular resource.
/// </summary>
/// <returns></returns>
string Serialize();
/// <summary>
/// Indicates whether this resource is strongly typed. If false it means the implementer
- /// is a <see cref="UntypedResource"/> object. This usually means that the matching serializer
+ /// is a <see cref="T:OSGeo.MapGuide.ObjectModels.UntypedResource"/> object. This usually means that the matching serializer
/// could not be found because the resource version is unrecognised.
/// </summary>
bool IsStronglyTyped { get; }
Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/SchemaOverrides/GdalRasterItem.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/SchemaOverrides/GdalRasterItem.cs 2011-08-04 11:10:46 UTC (rev 6029)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/SchemaOverrides/GdalRasterItem.cs 2011-08-04 11:56:09 UTC (rev 6030)
@@ -35,8 +35,6 @@
{
private Dictionary<string, GdalRasterItem> _items = new Dictionary<string, GdalRasterItem>();
- private IEnvelope _extents;
-
/// <summary>
/// Gets or sets the directory
/// </summary>
More information about the mapguide-commits
mailing list