added checksum utilities

This commit is contained in:
2022-05-25 08:30:31 +02:00
parent 87482452ce
commit cf1a23341a
5 changed files with 75 additions and 1 deletions

15
Checksums/test/Program.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using dotFionn.Checksum.Utils;
namespace test
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine(123.digitSum());
}
}
}

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\dotFionn.Checksum.Utils\dotFionn.Checksum.Utils.csproj" />
</ItemGroup>
</Project>