Initial commit

This commit is contained in:
Smaug123
2020-05-02 10:33:38 +01:00
commit f263f81968
13 changed files with 348 additions and 0 deletions

20
Git/Git.fsproj Normal file
View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Domain.fs" />
<Compile Include="Header.fs" />
<Compile Include="Repository.fs" />
<Compile Include="Hash.fs" />
<Compile Include="Object.fs" />
<Compile Include="Blob.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Abstractions" Version="11.0.4" />
</ItemGroup>
</Project>