Shift-Cipher-C-Sharp/ShiftCipher/ShiftCipher.csproj

13 lines
357 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>CorgiCoderShiftCipher</AssemblyName>
<RootNamespace>CorgiCoder.ShiftCipher</RootNamespace>
</PropertyGroup>
</Project>