mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
Cosmos.IL2CPU has changed name in simply IL2CPU
This commit is contained in:
parent
d6aff6ab3b
commit
f3633a5356
13 changed files with 19 additions and 29 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Core_Plugs.System.Text
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
using System.Threading;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Cosmos.Core_Plugs.System.Threading
|
||||
|
|
|
|||
|
|
@ -302,10 +302,9 @@ namespace Cosmos.System.FileSystem.VFS
|
|||
|
||||
return GetFile(xPath) != null;
|
||||
}
|
||||
catch (Exception e)
|
||||
catch
|
||||
{
|
||||
global::System.Console.Write("Exception occurred: ");
|
||||
global::System.Console.WriteLine(e.Message);
|
||||
/* Simply map any Exception to false as this method should return only bool */
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
@ -331,10 +330,9 @@ namespace Cosmos.System.FileSystem.VFS
|
|||
|
||||
return GetDirectory(xPath) != null;
|
||||
}
|
||||
catch (Exception e)
|
||||
catch
|
||||
{
|
||||
global::System.Console.Write("Exception occurred: ");
|
||||
global::System.Console.WriteLine(e.Message);
|
||||
/* Simply map any Exception to false as this method should return only bool */
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ using System;
|
|||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Cosmos.Debug.Kernel;
|
||||
using Cosmos.IL2CPU.API;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API;
|
||||
using IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem;
|
||||
using Cosmos.System.FileSystem.Listing;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
//#define COSMOSDEBUG
|
||||
using System.IO;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem.VFS;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#define COSMOSDEBUG
|
||||
using System.IO;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem.Listing;
|
||||
using Cosmos.System.FileSystem.VFS;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
#define COSMOSDEBUG
|
||||
//#define COSMOSDEBUG
|
||||
using System.IO;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem.Listing;
|
||||
using Cosmos.System.FileSystem.VFS;
|
||||
|
||||
namespace Cosmos.System2_Plugs.System.IO
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
using System.IO;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem.Listing;
|
||||
using Cosmos.System.FileSystem.VFS;
|
||||
using IL2CPU.API.Attribs;
|
||||
using System;
|
||||
|
||||
namespace Cosmos.System2_Plugs.System.IO
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
using System.IO;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
using Cosmos.System.FileSystem.Listing;
|
||||
using Cosmos.System.FileSystem.VFS;
|
||||
using IL2CPU.API.Attribs;
|
||||
using System;
|
||||
|
||||
namespace Cosmos.System2_Plugs.System.IO
|
||||
{
|
||||
[Plug(Target = typeof(FileNotFoundException))]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
//#define COSMOSDEBUG
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
using Cosmos.System;
|
||||
|
||||
namespace Cosmos.System_Plugs.System.IO
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
//#define COSMOSDEBUG
|
||||
using System;
|
||||
using System.IO;
|
||||
using Cosmos.System;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using System.Text;
|
||||
using IL2CPU.API.Attribs;
|
||||
|
||||
namespace Cosmos.System_Plugs.System.IO
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
|
||||
namespace Cosmos.System_Plugs.System.Runtime
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Text;
|
||||
using Cosmos.IL2CPU.API.Attribs;
|
||||
using IL2CPU.API.Attribs;
|
||||
|
||||
namespace Cosmos.System2_Plugs.System.Text
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue