diff --git a/ShiftCipher/.vs/ShiftCipher/FileContentIndex/17603a8f-c0a7-4bc8-8789-1efd8b0e9d9d.vsidx b/ShiftCipher/.vs/ShiftCipher/FileContentIndex/17603a8f-c0a7-4bc8-8789-1efd8b0e9d9d.vsidx
deleted file mode 100644
index 6b0f0e0..0000000
Binary files a/ShiftCipher/.vs/ShiftCipher/FileContentIndex/17603a8f-c0a7-4bc8-8789-1efd8b0e9d9d.vsidx and /dev/null differ
diff --git a/ShiftCipher/.vs/ShiftCipher/FileContentIndex/cbe45844-82c4-4c75-a6ef-49b6ebca165c.vsidx b/ShiftCipher/.vs/ShiftCipher/FileContentIndex/cbe45844-82c4-4c75-a6ef-49b6ebca165c.vsidx
deleted file mode 100644
index d609ad5..0000000
Binary files a/ShiftCipher/.vs/ShiftCipher/FileContentIndex/cbe45844-82c4-4c75-a6ef-49b6ebca165c.vsidx and /dev/null differ
diff --git a/ShiftCipher/.vs/ShiftCipher/v17/.suo b/ShiftCipher/.vs/ShiftCipher/v17/.suo
index d5fc9ce..8a4772e 100644
Binary files a/ShiftCipher/.vs/ShiftCipher/v17/.suo and b/ShiftCipher/.vs/ShiftCipher/v17/.suo differ
diff --git a/ShiftCipher/Program.cs b/ShiftCipher/Program.cs
index 1df4a71..b73d11b 100644
--- a/ShiftCipher/Program.cs
+++ b/ShiftCipher/Program.cs
@@ -1,9 +1,16 @@
-namespace JacobMaurer.ShiftCipher;
+using System;
-public static class ShiftCipher
+namespace CorgiCoder.ShiftCipher;
+
+public class ShiftSerializer
{
- static ShiftCipher()
+ static ShiftSerializer()
{
Console.WriteLine("Loaded");
}
+
+ public ShiftSerializer()
+ {
+
+ }
}
diff --git a/ShiftCipher/ShiftCipher.csproj b/ShiftCipher/ShiftCipher.csproj
index dc2bb05..85df044 100644
--- a/ShiftCipher/ShiftCipher.csproj
+++ b/ShiftCipher/ShiftCipher.csproj
@@ -3,8 +3,10 @@
Library
net7.0
- enable
+ disable
enable
+ CorgiCoderShiftCipher
+ CorgiCoder.ShiftCipher
diff --git a/Testing/Program.cs b/Testing/Program.cs
index 088da70..2484653 100644
--- a/Testing/Program.cs
+++ b/Testing/Program.cs
@@ -1,11 +1,11 @@
-using JacobMaurer.ShiftCipher;
+using CorgiCoder.ShiftCipher;
-namespace JacobMaurer.Testing;
+namespace CorgiCoder.Testing;
public static class Program
{
public static void Main()
{
-
+ ShiftSerializer shift = new();
}
}
diff --git a/Testing/Testing.csproj b/Testing/Testing.csproj
index b64cdcf..ed6b51e 100644
--- a/Testing/Testing.csproj
+++ b/Testing/Testing.csproj
@@ -3,8 +3,9 @@
Exe
net7.0
- enable
+ disable
enable
+ CorgiCoder.Testing