mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +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;
|
using System.Text;
|
||||||
|
|
||||||
namespace Cosmos.Core_Plugs.System.Text
|
namespace Cosmos.Core_Plugs.System.Text
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Cosmos.Core_Plugs.System.Threading
|
namespace Cosmos.Core_Plugs.System.Threading
|
||||||
|
|
|
||||||
|
|
@ -302,10 +302,9 @@ namespace Cosmos.System.FileSystem.VFS
|
||||||
|
|
||||||
return GetFile(xPath) != null;
|
return GetFile(xPath) != null;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch
|
||||||
{
|
{
|
||||||
global::System.Console.Write("Exception occurred: ");
|
/* Simply map any Exception to false as this method should return only bool */
|
||||||
global::System.Console.WriteLine(e.Message);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -331,10 +330,9 @@ namespace Cosmos.System.FileSystem.VFS
|
||||||
|
|
||||||
return GetDirectory(xPath) != null;
|
return GetDirectory(xPath) != null;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch
|
||||||
{
|
{
|
||||||
global::System.Console.Write("Exception occurred: ");
|
/* Simply map any Exception to false as this method should return only bool */
|
||||||
global::System.Console.WriteLine(e.Message);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Cosmos.Debug.Kernel;
|
using Cosmos.Debug.Kernel;
|
||||||
using Cosmos.IL2CPU.API;
|
using IL2CPU.API;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.System;
|
using Cosmos.System;
|
||||||
using Cosmos.System.FileSystem;
|
using Cosmos.System.FileSystem;
|
||||||
using Cosmos.System.FileSystem.Listing;
|
using Cosmos.System.FileSystem.Listing;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
//#define COSMOSDEBUG
|
//#define COSMOSDEBUG
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.System;
|
using Cosmos.System;
|
||||||
using Cosmos.System.FileSystem.VFS;
|
using Cosmos.System.FileSystem.VFS;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#define COSMOSDEBUG
|
#define COSMOSDEBUG
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.System;
|
using Cosmos.System;
|
||||||
using Cosmos.System.FileSystem.Listing;
|
using Cosmos.System.FileSystem.Listing;
|
||||||
using Cosmos.System.FileSystem.VFS;
|
using Cosmos.System.FileSystem.VFS;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
#define COSMOSDEBUG
|
//#define COSMOSDEBUG
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.System;
|
using Cosmos.System;
|
||||||
using Cosmos.System.FileSystem.Listing;
|
|
||||||
using Cosmos.System.FileSystem.VFS;
|
using Cosmos.System.FileSystem.VFS;
|
||||||
|
|
||||||
namespace Cosmos.System2_Plugs.System.IO
|
namespace Cosmos.System2_Plugs.System.IO
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,5 @@
|
||||||
using System.IO;
|
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;
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Cosmos.System2_Plugs.System.IO
|
namespace Cosmos.System2_Plugs.System.IO
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
using System.IO;
|
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;
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Cosmos.System2_Plugs.System.IO
|
namespace Cosmos.System2_Plugs.System.IO
|
||||||
{
|
{
|
||||||
[Plug(Target = typeof(FileNotFoundException))]
|
[Plug(Target = typeof(FileNotFoundException))]
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
//#define COSMOSDEBUG
|
//#define COSMOSDEBUG
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.System;
|
using Cosmos.System;
|
||||||
|
|
||||||
namespace Cosmos.System_Plugs.System.IO
|
namespace Cosmos.System_Plugs.System.IO
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
//#define COSMOSDEBUG
|
//#define COSMOSDEBUG
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Cosmos.System;
|
using IL2CPU.API.Attribs;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Cosmos.System_Plugs.System.IO
|
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
|
namespace Cosmos.System_Plugs.System.Runtime
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Cosmos.IL2CPU.API.Attribs;
|
using IL2CPU.API.Attribs;
|
||||||
|
|
||||||
namespace Cosmos.System2_Plugs.System.Text
|
namespace Cosmos.System2_Plugs.System.Text
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue