34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.6">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DataDomain\DataDomain.csproj" />
|
|
<ProjectReference Include="..\DatamodelLibrary\DatamodelLibrary.csproj" />
|
|
<ProjectReference Include="..\Helpers\Helpers.csproj" />
|
|
<ProjectReference Include="..\SqliteBackups\SqliteBackups.csproj" />
|
|
<ProjectReference Include="..\StockBL.Interface\StockBL.Interface.csproj" />
|
|
<ProjectReference Include="..\StockBL\StockBL.csproj" />
|
|
<ProjectReference Include="..\StockDal.Interface\StockDAL.Interface.csproj" />
|
|
<ProjectReference Include="..\StockDAL\StockDAL.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Stocks.db">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |