Made CorgiCoder's Shift Cipher even more awesome!
This commit is contained in:
parent
c71bf9dd84
commit
2dad5db062
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user