29 lines
926 B
XML
29 lines
926 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<CodeAnalysisRuleSet>../Galaeth.ruleset</CodeAnalysisRuleSet>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Galaeth.Core\Galaeth.Core.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Dapper" Version="2.1.35" />
|
|||
|
<PackageReference Include="Npgsql" Version="8.0.5" />
|
|||
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Content Include="Migrations\*">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|