Files
managed-git/Git/Git.fsproj

29 lines
892 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Stream.fs" />
<Compile Include="Parse.fs" />
<Compile Include="Domain.fs" />
<Compile Include="Header.fs" />
<Compile Include="Repository.fs" />
<Compile Include="Hash.fs" />
<Compile Include="Tree.fs" />
<Compile Include="Blob.fs" />
<Compile Include="Commit.fs" />
<Compile Include="Object.fs" />
<Compile Include="EncodedObject.fs" />
<Compile Include="Reference.fs" />
<Compile Include="Commands\Log.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ionic.Zlib" Version="1.9.1.5" />
<PackageReference Include="System.IO.Abstractions" Version="11.0.4" />
</ItemGroup>
</Project>