added checksum utilities
This commit is contained in:
15
Checksums/test/Program.cs
Normal file
15
Checksums/test/Program.cs
Normal 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());
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
12
Checksums/test/test.csproj
Normal file
12
Checksums/test/test.csproj
Normal 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>
|
||||
Reference in New Issue
Block a user