Author: svetlana
Date: 2005-11-06 06:08:53 -0500 (Sun, 06 Nov 2005)
New Revision: 52622
Added:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.sln
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.vmwcsproj
Modified:
trunk/mcs/class/System.Runtime.Remoting/Assembly/AssemblyInfo.cs
trunk/mcs/class/System.Runtime.Remoting/ChangeLog
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpConnectionPool.cs
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/ChangeLog
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/ChangeLog
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/MetaData.cs
Log:
Add System.Runtime.Remoting.vmwcsproj and System.Runtime.Remoting.sln; Some
TARGET_JVM changes
Modified: trunk/mcs/class/System.Runtime.Remoting/Assembly/AssemblyInfo.cs
===================================================================
--- trunk/mcs/class/System.Runtime.Remoting/Assembly/AssemblyInfo.cs
2005-11-06 10:51:54 UTC (rev 52621)
+++ trunk/mcs/class/System.Runtime.Remoting/Assembly/AssemblyInfo.cs
2005-11-06 11:08:53 UTC (rev 52622)
@@ -56,4 +56,6 @@
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyDelaySign(true)]
+#if !TARGET_JVM
[assembly: AssemblyKeyFile("../ecma.pub")]
+#endif
\ No newline at end of file
Modified: trunk/mcs/class/System.Runtime.Remoting/ChangeLog
===================================================================
--- trunk/mcs/class/System.Runtime.Remoting/ChangeLog 2005-11-06 10:51:54 UTC
(rev 52621)
+++ trunk/mcs/class/System.Runtime.Remoting/ChangeLog 2005-11-06 11:08:53 UTC
(rev 52622)
@@ -1,3 +1,8 @@
+2005-11-06 Svetlana Zholkovsky <[EMAIL PROTECTED]>
+
+ * Add System.Runtime.Remoting.vmwcsproj and System.Runtime.Remoting.sln
+ * AssemblyInfo.cs: only TARGET_JVM changes
+
2005-11-05 Robert Jordan <[EMAIL PROTECTED]>
* System.Runtime.Remoting.dll.sources: Removed Ipc/IpcChannelFactory.cs
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/ChangeLog
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/ChangeLog
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/ChangeLog
2005-11-06 11:08:53 UTC (rev 52622)
@@ -1,5 +1,6 @@
2005-11-06 Svetlana Zholkovsky <[EMAIL PROTECTED]>
+ * SoapMessageFormatter.cs, RemotingThreadPool.cs: only TARGET_JVM changes
* Create new dictionary object for Properties during initialization:
- SoapCore.cs
- BinaryCore.cs
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/ChangeLog
2005-11-06 11:08:53 UTC (rev 52622)
@@ -1,3 +1,7 @@
+2005-11-06 Svetlana Zholkovsky <[EMAIL PROTECTED]>
+
+ * TcpServerChannel.cs, TcpConnectionPool.cs: only TARGET_JVM changes
+
2005-07-25 Lluis Sanchez Gual <[EMAIL PROTECTED]>
* TcpChannel.cs: Don't create a server channel when the
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpConnectionPool.cs
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpConnectionPool.cs
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpConnectionPool.cs
2005-11-06 11:08:53 UTC (rev 52622)
@@ -59,14 +59,16 @@
{
// This thread will close unused connections
_poolThread = new Thread (new ThreadStart
(ConnectionCollector));
+ _poolThread.IsBackground = true;
_poolThread.Start();
- _poolThread.IsBackground = true;
}
public static void Shutdown ()
{
+#if !TARGET_JVM
if (_poolThread != null)
_poolThread.Abort();
+#endif
}
public static int MaxOpenConnections
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels.Tcp/TcpServerChannel.cs
2005-11-06 11:08:53 UTC (rev 52622)
@@ -56,6 +56,10 @@
RemotingThreadPool threadPool;
+#if TARGET_JVM
+ private volatile bool stopped = false;
+#endif
+
void Init (IServerChannelSinkProvider serverSinkProvider)
{
if (serverSinkProvider == null)
@@ -200,22 +204,38 @@
{
try
{
- while (true)
+#if !TARGET_JVM
+ while(true)
+#else
+ while(!stopped)
+#endif
{
Socket socket = listener.AcceptSocket
();
ClientConnection reader = new
ClientConnection (this, socket, sink);
try {
if (!threadPool.RunThread (new
ThreadStart (reader.ProcessMessages)))
socket.Close ();
- } catch {}
+ } catch (Exception e)
+ {
+#if DEBUG
+ Console.WriteLine("Exception
caught in TcpServerChannel.WaitForConnections during start process message: {0}
{1}", e.GetType(), e.Message);
+#endif
+ }
}
}
- catch
- {}
+ catch (Exception e)
+ {
+#if DEBUG
+ Console.WriteLine("Exception caught in
TcpServerChannel.WaitForConnections, stop channel's thread : {0} {1}",
e.GetType(), e.Message);
+#endif
+ }
}
public void StartListening (object data)
{
+#if TARGET_JVM
+ stopped = false;
+#endif
listener = new TcpListener (bindAddress, port);
if (server_thread == null)
{
@@ -238,13 +258,21 @@
public void StopListening (object data)
{
+#if TARGET_JVM
+ stopped = true;
+#endif
if (server_thread == null) return;
+#if !TARGET_JVM
server_thread.Abort ();
+#else
+ server_thread.Interrupt ();
+#endif
+ server_thread = null;
listener.Stop ();
threadPool.Free ();
- server_thread.Join ();
- server_thread = null;
+ server_thread.Join ();
+ server_thread = null;
}
}
@@ -304,7 +332,9 @@
}
catch (Exception ex)
{
-// Console.WriteLine (ex);
+#if DEBUG
+ Console.WriteLine ("The exception was caught
during TcpServerChannel.ProcessMessages: {0}, {1}", ex.GetType(), ex.Message);
+#endif
}
finally
{
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/ChangeLog
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/ChangeLog
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/ChangeLog
2005-11-06 11:08:53 UTC (rev 52622)
@@ -1,3 +1,7 @@
+2005-11-06 Svetlana Zholkovsky <[EMAIL PROTECTED]>
+
+ * MetaData.cs: only TARGET_JVM changes
+
2005-01-14 Lluis Sanchez Gual <[EMAIL PROTECTED]>
* MetaDataCodeGenerator.cs: Fix warning.
Modified:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/MetaData.cs
===================================================================
---
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/MetaData.cs
2005-11-06 10:51:54 UTC (rev 52621)
+++
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/MetaData.cs
2005-11-06 11:08:53 UTC (rev 52622)
@@ -35,8 +35,10 @@
using System.Xml;
using System.Reflection;
using System.Net;
+#if !TARGET_JVM
using System.CodeDom.Compiler;
using Microsoft.CSharp;
+#endif
namespace System.Runtime.Remoting.MetadataServices
{
@@ -54,6 +56,7 @@
{
}
+#if !TARGET_JVM
[MonoTODO ("strong name")]
public static void ConvertCodeSourceFileToAssemblyFile (
string codePath,
@@ -96,7 +99,6 @@
throw new Exception ("There where errors during
compilation of the assembly:\n" + errs);
}
}
-
public static void ConvertSchemaStreamToCodeSourceStream (
bool clientProxy,
string outputDirectory,
@@ -131,6 +133,7 @@
memStream.Position = 0;
cg.GenerateCode (clientProxy, outputDirectory,
memStream, outCodeStreamList, proxyUrl, proxyNamespace);
}
+#endif
public static void ConvertTypesToSchemaToFile (ServiceType[]
servicetypes, SdlType sdltype, string path)
{
Added: trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.sln
===================================================================
--- trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.sln
2005-11-06 10:51:54 UTC (rev 52621)
+++ trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.sln
2005-11-06 11:08:53 UTC (rev 52622)
@@ -0,0 +1,21 @@
+Microsoft Visual Studio Solution File, Format Version 8.00
+Project("{83B010C7-76FC-4FAD-A26C-00D7EFE60256}") = "System.Runtime.Remoting",
"System.Runtime.Remoting.vmwcsproj", "{DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfiguration) = preSolution
+ Debug_Java = Debug_Java
+ Release_Java = Release_Java
+ EndGlobalSection
+ GlobalSection(ProjectConfiguration) = postSolution
+ {DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}.Debug_Java.ActiveCfg =
Debug_Java|.NET
+ {DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}.Debug_Java.Build.0 =
Debug_Java|.NET
+ {DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}.Release_Java.ActiveCfg =
Release_Java|.NET
+ {DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}.Release_Java.Build.0 =
Release_Java|.NET
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
Property changes on:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.sln
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.vmwcsproj
===================================================================
--- trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.vmwcsproj
2005-11-06 10:51:54 UTC (rev 52621)
+++ trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.vmwcsproj
2005-11-06 11:08:53 UTC (rev 52622)
@@ -0,0 +1,69 @@
+<VisualStudioProject>
+ <CSHARP ProjectType="Local" ProductVersion="7.10.3077"
SchemaVersion="2.0" ProjectGuid="{DA9ADBB2-C15E-43D4-82D1-FBAB3925F512}">
+ <Build>
+ <Settings ApplicationIcon=""
AssemblyKeyContainerName="" AssemblyName="System.Runtime.Remoting"
AssemblyOriginatorKeyFile="" DefaultClientScript="JScript"
DefaultHTMLPageLayout="Grid" DefaultTargetSchema="IE50" DelaySign="false"
OutputType="Library" PreBuildEvent="" PostBuildEvent=""
RootNamespace="System.Runtime.Remoting" RunPostBuildEvent="OnBuildSuccess"
StartupObject="">
+ <Config Name="Debug_Java"
AllowUnsafeBlocks="false" BaseAddress="285212672"
CheckForOverflowUnderflow="false" ConfigurationOverrideFile=""
DefineConstants="DEBUG;TRACE;JAVA;NET_1_1;TARGET_JVM" DocumentationFile=""
DebugSymbols="true" FileAlignment="4096" IncrementalBuild="false"
NoStdLib="false" NoWarn="1595" Optimize="false" OutputPath="bin\Debug_Java\"
RegisterForComInterop="false" RemoveIntegerChecks="false"
TreatWarningsAsErrors="false" WarningLevel="4"/>
+ <Config Name="Release_Java"
AllowUnsafeBlocks="false" BaseAddress="285212672"
CheckForOverflowUnderflow="false" ConfigurationOverrideFile=""
DefineConstants="TRACE;JAVA;NET_1_1;TARGET_JVM" DocumentationFile=""
DebugSymbols="false" FileAlignment="4096" IncrementalBuild="false"
NoStdLib="false" NoWarn="1595" Optimize="true" OutputPath="bin\Release_Java\"
RegisterForComInterop="false" RemoveIntegerChecks="false"
TreatWarningsAsErrors="false" WarningLevel="4"/>
+ </Settings>
+ <References>
+ <Reference Name="System" AssemblyName="System"
HintPath="..\lib\System.dll" Private="False"/>
+ <Reference Name="System.Data"
AssemblyName="System.Data" HintPath="..\lib\System.Data.dll" Private="False"/>
+ <Reference Name="System.Xml"
AssemblyName="System.Xml" HintPath="..\lib\System.Xml.dll" Private="False"/>
+ <Reference Name="rt" AssemblyName="rt"
HintPath="..\lib\rt.dll" Private="False"/>
+ <Reference
Name="System.Runtime.Serialization.Formatters.Soap"
AssemblyName="System.Runtime.Serialization.Formatters.Soap"
HintPath="..\lib\System.Runtime.Serialization.Formatters.Soap.dll"
Private="False"/>
+ <Reference Name="System.Web"
AssemblyName="System.Web" HintPath="..\lib\System.Web.dll" Private="False"/>
+ <Reference Name="J2SE.Helpers"
AssemblyName="J2SE.Helpers" HintPath="..\lib\J2SE.Helpers.dll" Private="False"/>
+ </References>
+ </Build>
+ <Files>
+ <Include>
+ <File RelPath="Assembly\AssemblyInfo.cs"
SubType="Code" BuildAction="Compile"/>
+ <File RelPath="Assembly\Consts.cs.in"
Link="..\..\build\common\Consts.cs.in" SubType="Code" BuildAction="Compile"/>
+ <File RelPath="Assembly\Locale.cs"
Link="..\..\build\common\Locale.cs" SubType="Code" BuildAction="Compile"/>
+ <File RelPath="Assembly\MonoTODOAttribute.cs"
Link="..\..\build\common\MonoTODOAttribute.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\BinaryClientFormatterSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\BinaryClientFormatterSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\BinaryCore.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\BinaryServerFormatterSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\BinaryServerFormatterSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\ChannelCore.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\CommonTransportKeys.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\RemotingThreadPool.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapClientFormatterSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapClientFormatterSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapCore.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapMessageFormatter.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapServerFormatterSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels\SoapServerFormatterSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\AggregateDictionary.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpChannel.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpClientChannel.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpHelper.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpRemotingHandler.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpRemotingHandlerFactory.jvm.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpServer.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Http\HttpServerChannel.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpChannel.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpClientChannel.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpClientTransportSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpClientTransportSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpConnectionPool.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpMessageIO.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpServerChannel.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Channels.Tcp\TcpServerTransportSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\MetaData.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\MetaDataCodeGenerator.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\MetaDataExporter.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\SdlChannelSink.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\SdlChannelSinkProvider.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\SdlType.cs" SubType="Code"
BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\ServiceType.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\SUDSGeneratorException.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.MetadataServices\SUDSParserException.cs"
SubType="Code" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Services\RemotingClientProxy.cs"
SubType="Component" BuildAction="Compile"/>
+ <File
RelPath="System.Runtime.Remoting.Services\RemotingService.cs"
SubType="Component" BuildAction="Compile"/>
+ </Include>
+ </Files>
+ <UserProperties REFS.JarPath.system.web="..\lib\System.Web.jar"
REFS.JarPath.system.runtime.serialization.formatters.soap="..\lib\System.Runtime.Serialization.Formatters.Soap.jar"
project.JDKType="1.4.2_05" REFS.JarPath.rt="..\lib\rt.jar"
REFS.JarPath.system.xml="..\lib\System.Xml.jar"
REFS.JarPath.system.data="..\lib\System.Data.jar"
REFS.JarPath.system="..\lib\System.jar"
REFS.JarPath.j2se.helpers="..\lib\J2SE.Helpers.jar.jar"/>
+ </CSHARP>
+ <VisualMainWin><Project Prop2023="1.4.2_05" Prop2024="" Prop2026=""
Prop2015="" Version="1.7.0" ProjectType="1"/><References/><Configs><Config
Prop2000="0" Prop2001="0" Prop2002="0" Prop2003="0" Prop2004="0" Prop2005="0"
Prop2006="" Prop2007="" Prop2008="" Prop2009="" Prop2010="" Prop2011="0"
Prop2012="0" Prop2013="" Prop2014="0" Prop2016="" Prop2027="" Prop2019="0"
Prop2020="285212672" Prop2021="4096" Prop2022="0" Prop2017="0" Prop2018="-1"
Name="Release_Java"/><Config Prop2000="0" Prop2001="0" Prop2002="0"
Prop2003="0" Prop2004="0" Prop2005="0" Prop2006="" Prop2007="" Prop2008=""
Prop2009="" Prop2010="" Prop2011="-1" Prop2012="0" Prop2013="" Prop2014="0"
Prop2016="" Prop2027="" Prop2019="0" Prop2020="285212672" Prop2021="4096"
Prop2022="0" Prop2017="0" Prop2018="0"
Name="Debug_Java"/></Configs></VisualMainWin></VisualStudioProject>
Property changes on:
trunk/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.vmwcsproj
___________________________________________________________________
Name: svn:executable
+ *
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches