Made CorgiCoder's Shift Cipher even more awesome!

This commit is contained in:
That_One_Nerd 2023-05-22 08:55:52 -04:00
parent c71bf9dd84
commit 2dad5db062
7 changed files with 18 additions and 8 deletions

Binary file not shown.

View File

@ -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"); Console.WriteLine("Loaded");
} }
public ShiftSerializer()
{
}
} }

View File

@ -3,8 +3,10 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework> <TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<AssemblyName>CorgiCoderShiftCipher</AssemblyName>
<RootNamespace>CorgiCoder.ShiftCipher</RootNamespace>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -1,11 +1,11 @@
using JacobMaurer.ShiftCipher; using CorgiCoder.ShiftCipher;
namespace JacobMaurer.Testing; namespace CorgiCoder.Testing;
public static class Program public static class Program
{ {
public static void Main() public static void Main()
{ {
ShiftSerializer shift = new();
} }
} }

View File

@ -3,8 +3,9 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework> <TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>CorgiCoder.Testing</RootNamespace>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>