summary refs log tree commit diff
path: root/GitStaticPageBuilder/GitStaticPageBuilder.csproj
blob: 28585826fbe94e52bcd63fe2eead12e503997206 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net7.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
    </PropertyGroup>

    <ItemGroup>
      <ProjectReference Include="..\LibGit\LibGit.csproj" />
    </ItemGroup>

    <ItemGroup>
        <Folder Include="Resources\" />
        <Content Include="Resources\**">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        </Content>
    </ItemGroup>

</Project>