diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj b/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
index 6f29c4991..f16f3ecde 100644
--- a/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
+++ b/source2/Compiler/Cosmos.Compiler.DebugStub/Cosmos.Debug.DebugStub.csproj
@@ -84,10 +84,10 @@
True
CmdSend.xs
-
+
True
True
- DebugStub.xs
+ Main.xs
True
@@ -151,9 +151,9 @@
CmdSend.cs
-
+
CosmosXSharpGenerator
- DebugStub.cs
+ Main.cs
CosmosXSharpGenerator
diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
similarity index 80%
rename from source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs
rename to source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
index 52091bc7e..1eb773081 100644
--- a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.cs
+++ b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.cs
@@ -4,9 +4,9 @@ using Cosmos.Assembler;
using Cosmos.Assembler.x86;
namespace Cosmos.Debug.DebugStub {
- public class DebugStub : Cosmos.Assembler.Code {
+ public class Main : Cosmos.Assembler.Code {
- public DebugStub(Assembler.Assembler aAssembler) : base(aAssembler) {}
+ public Main(Assembler.Assembler aAssembler) : base(aAssembler) {}
public override void Assemble() {
new Comment("X#: Group DebugStub");
diff --git a/source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.xs b/source2/Compiler/Cosmos.Compiler.DebugStub/Main.xs
similarity index 100%
rename from source2/Compiler/Cosmos.Compiler.DebugStub/DebugStub.xs
rename to source2/Compiler/Cosmos.Compiler.DebugStub/Main.xs