Browse Source

Fixed obsolete warnings in debugger

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@666 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 20 years ago
parent
commit
e5b0912f94
  1. 4
      src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs
  2. 6
      src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs

4
src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/RemotingConfigurationHelpper.cs

@ -45,7 +45,7 @@ namespace ICSharpCode.SharpDevelop.Services @@ -45,7 +45,7 @@ namespace ICSharpCode.SharpDevelop.Services
{
AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
RemotingConfiguration.Configure(Path.Combine(path, "Client.config"));
RemotingConfiguration.Configure(Path.Combine(path, "Client.config"), false);
string baseDir = Directory.GetDirectoryRoot(AppDomain.CurrentDomain.BaseDirectory);
string relDirs = AppDomain.CurrentDomain.BaseDirectory + ";" + path;
@ -60,7 +60,7 @@ namespace ICSharpCode.SharpDevelop.Services @@ -60,7 +60,7 @@ namespace ICSharpCode.SharpDevelop.Services
private void ConfigureServer()
{
AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
RemotingConfiguration.Configure(Path.Combine(path, "Server.config"));
RemotingConfiguration.Configure(Path.Combine(path, "Server.config"), false);
}
Assembly AssemblyResolve(object sender, ResolveEventArgs args)

6
src/AddIns/Misc/Debugger/TreeListView/Project/Src/APIs/APIsStructs.cs

@ -30,9 +30,9 @@ namespace System.Runtime.InteropServices.APIs @@ -30,9 +30,9 @@ namespace System.Runtime.InteropServices.APIs
public struct WIN32_FIND_DATA
{
public uint fileAttributes;
public FILETIME creationTime;
public FILETIME lastAccessTime;
public FILETIME lastWriteTime;
public System.Runtime.InteropServices.ComTypes.FILETIME creationTime;
public System.Runtime.InteropServices.ComTypes.FILETIME lastAccessTime;
public System.Runtime.InteropServices.ComTypes.FILETIME lastWriteTime;
public uint fileSizeHigh;
public uint fileSizeLow;
public uint reserved0;

Loading…
Cancel
Save