diff --git a/.gitignore b/.gitignore
index 64fc62e..e5b6078 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-BIN/
+bin/
obj/
/packages/
riderModule.iml
diff --git a/Program.cs b/Program.cs
index a8e6fe7..4724b7b 100644
--- a/Program.cs
+++ b/Program.cs
@@ -53,7 +53,7 @@ void CreateOutputImage(int imageSize, float[] imageData, string imageOutputPath)
data.SaveTo(stream);
}
-enum OpCode { VarX, VarY, Const, Add, Sub, Mul, Max, Min, Neg, Square, Sqrt }
+internal enum OpCode { VarX, VarY, Const, Add, Sub, Mul, Max, Min, Neg, Square, Sqrt }
internal readonly record struct Instruction(int Out, OpCode OpCode, int A = -1, int B = -1, float V = float.MaxValue);
@@ -99,7 +99,6 @@ internal static class Parsing
}
}
-
internal static class Compiler
{
static (AssemblyBuilder, MethodBuilder, TypeBuilder) CreateDynamicAssemblyWithMethodBuilder(string assemblyName,
diff --git a/Sharpero.sln.DotSettings.user b/Sharpero.sln.DotSettings.user
index 90a332d..ab88e32 100644
--- a/Sharpero.sln.DotSettings.user
+++ b/Sharpero.sln.DotSettings.user
@@ -4,5 +4,7 @@
ForceIncluded
ForceIncluded
ForceIncluded
+ ForceIncluded
ForceIncluded
- ForceIncluded
\ No newline at end of file
+ ForceIncluded
+ ForceIncluded
\ No newline at end of file