A deep dive into git internals.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
git-guts-fs/git-guts/git-guts.fsproj

27 lines
771 B

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>git_guts</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Utils.fs" />
<Compile Include="GitGuts.fs" />
<Compile Include="GitObject.fs" />
<Compile Include="PackData.fs" />
<Compile Include="PackIndex.fs" />
<Compile Include="Pack.fs" />
<Compile Include="StagingIndex.fs" />
<Compile Include="Refs.fs" />
<Compile Include="Logs.fs" />
<Compile Include="GitRepo.fs" />
<Compile Include="Verify.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.43.0" />
</ItemGroup>
</Project>