27 lines
806 B
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../DAL/DAL.csproj"/>
<ProjectReference Include="../API/API.csproj"/>
</ItemGroup>
<ItemGroup>
<None Remove="Filler\Grants.sql" />
<Content Include="Filler\Grants.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="Filler\Permissions.sql" />
<Content Include="Filler\Permissions.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>