43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</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="..\BrowserHelper\BrowserHelper.csproj" />
|
|
<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>
|
|
<Compile Update="frmEditStock.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Stocks.db">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |