19 lines
542 B
XML
19 lines
542 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Drab.LocalDb\Drab.LocalDb.csproj"/>
|
|
<ProjectReference Include="..\Pcm.Db\Pcm.Db.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="6.0.1"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|