[mapguide-commits] r6297 - in sandbox/adsk/2.3r/Web/src/DotNetApi: . Foundation Geometry MapGuideCommon PlatformBase Web

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue Dec 6 00:28:15 EST 2011


Author: sparkliu
Date: 2011-12-05 21:28:15 -0800 (Mon, 05 Dec 2011)
New Revision: 6297

Modified:
   sandbox/adsk/2.3r/Web/src/DotNetApi/Foundation/FoundationMakefile
   sandbox/adsk/2.3r/Web/src/DotNetApi/Geometry/GeometryMakefile
   sandbox/adsk/2.3r/Web/src/DotNetApi/Makefile
   sandbox/adsk/2.3r/Web/src/DotNetApi/MapGuideCommon/MapGuideCommonMakefile
   sandbox/adsk/2.3r/Web/src/DotNetApi/PlatformBase/PlatformBaseMakefile
   sandbox/adsk/2.3r/Web/src/DotNetApi/Web/WebMakefile
Log:
Special fix for Paul, Escalation 1415559

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/Foundation/FoundationMakefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/Foundation/FoundationMakefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/Foundation/FoundationMakefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -20,8 +20,8 @@
 release: $(OUTDIR)\OSGeo.MapGuide.Foundation.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Foundation.Temp.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /platform:$(PLATFORM) /target:library .\*.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs
   copy /y $(OUTDIR)\OSGeo.MapGuide.Foundation.dll $(OUTDIR)\OSGeo.MapGuide.Foundation.Temp.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Foundation.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /platform:$(PLATFORM) /target:library .\*.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/Geometry/GeometryMakefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/Geometry/GeometryMakefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/Geometry/GeometryMakefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -20,8 +20,8 @@
 release: $(OUTDIR)\OSGeo.MapGuide.Geometry.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Geometry.Temp.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Geometry.dll /platform:$(PLATFORM) /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Geometry.dll /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs
   copy /y $(OUTDIR)\OSGeo.MapGuide.Geometry.dll $(OUTDIR)\OSGeo.MapGuide.Geometry.Temp.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Geometry.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Geometry.dll /platform:$(PLATFORM) /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Geometry.dll /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll /target:library .\*.cs

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/Makefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/Makefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/Makefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -11,7 +11,7 @@
 release: $(OUTDIR)\MapGuideDotNetApi.dll
 
 $(OUTDIR)\MapGuideDotNetApid.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\MapGuideDotNetApid.dll /platform:$(PLATFORM) /target:library /lib:$(OUTDIR) /reference:OSGeo.MapGuide.Foundation.dll;OSGeo.MapGuide.Geometry.dll;OSGeo.MapGuide.PlatformBase.dll;OSGeo.MapGuide.MapGuideCommon.dll;OSGeo.MapGuide.Web.dll .\AssemblyInfo.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\MapGuideDotNetApid.dll /target:library /lib:$(OUTDIR) /reference:OSGeo.MapGuide.Foundation.dll;OSGeo.MapGuide.Geometry.dll;OSGeo.MapGuide.PlatformBase.dll;OSGeo.MapGuide.MapGuideCommon.dll;OSGeo.MapGuide.Web.dll .\AssemblyInfo.cs
 
 $(OUTDIR)\MapGuideDotNetApi.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\MapGuideDotNetApi.dll /platform:$(PLATFORM) /target:library /lib:$(OUTDIR) /reference:OSGeo.MapGuide.Foundation.dll;OSGeo.MapGuide.Geometry.dll;OSGeo.MapGuide.PlatformBase.dll;OSGeo.MapGuide.MapGuideCommon.dll;OSGeo.MapGuide.Web.dll .\AssemblyInfo.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\MapGuideDotNetApi.dll /target:library /lib:$(OUTDIR) /reference:OSGeo.MapGuide.Foundation.dll;OSGeo.MapGuide.Geometry.dll;OSGeo.MapGuide.PlatformBase.dll;OSGeo.MapGuide.MapGuideCommon.dll;OSGeo.MapGuide.Web.dll .\AssemblyInfo.cs

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/MapGuideCommon/MapGuideCommonMakefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/MapGuideCommon/MapGuideCommonMakefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/MapGuideCommon/MapGuideCommonMakefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -20,8 +20,8 @@
 release: $(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll
 
 $(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.Temp.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll /platform:$(PLATFORM) /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll .\*.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll .\*.cs
   copy /y $(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll $(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.Temp.dll
 
 $(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll /target:library /platform:$(PLATFORM) /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll .\*.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll .\*.cs

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/PlatformBase/PlatformBaseMakefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/PlatformBase/PlatformBaseMakefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/PlatformBase/PlatformBaseMakefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -20,8 +20,8 @@
 release: $(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll
 
 $(OUTDIR)\OSGeo.MapGuide.PlatformBase.Temp.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll /platform:$(PLATFORM) /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll .\*.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll .\*.cs
   copy /y $(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll $(OUTDIR)\OSGeo.MapGuide.PlatformBase.Temp.dll
 
 $(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll /platform:$(PLATFORM) /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll .\*.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll .\*.cs

Modified: sandbox/adsk/2.3r/Web/src/DotNetApi/Web/WebMakefile
===================================================================
--- sandbox/adsk/2.3r/Web/src/DotNetApi/Web/WebMakefile	2011-12-05 22:10:39 UTC (rev 6296)
+++ sandbox/adsk/2.3r/Web/src/DotNetApi/Web/WebMakefile	2011-12-06 05:28:15 UTC (rev 6297)
@@ -20,8 +20,8 @@
 release: $(OUTDIR)\OSGeo.MapGuide.Web.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Web.Temp.dll:
-  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Web.dll /platform:$(PLATFORM) /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll;$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll .\*.cs
+  csc.exe /debug+ /debug:full /optimize- /out:$(OUTDIR)\OSGeo.MapGuide.Web.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll;$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll .\*.cs
   copy /y $(OUTDIR)\OSGeo.MapGuide.Web.dll $(OUTDIR)\OSGeo.MapGuide.Web.Temp.dll
 
 $(OUTDIR)\OSGeo.MapGuide.Web.dll:
-  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Web.dll /platform:$(PLATFORM) /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll;$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll .\*.cs
+  csc.exe /debug+ /debug:pdbonly /optimize+ /out:$(OUTDIR)\OSGeo.MapGuide.Web.dll /target:library /reference:$(OUTDIR)\OSGeo.MapGuide.Foundation.dll;$(OUTDIR)\OSGeo.MapGuide.Geometry.dll;$(OUTDIR)\OSGeo.MapGuide.PlatformBase.dll;$(OUTDIR)\OSGeo.MapGuide.MapGuideCommon.dll .\*.cs



More information about the mapguide-commits mailing list