25 lines
859 B
XML
25 lines
859 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DataDomain\DataDomain.csproj" />
|
|
<ProjectReference Include="..\DatamodelLibrary\DatamodelLibrary.csproj" />
|
|
<ProjectReference Include="..\Helpers\Helpers.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>
|
|
|
|
</Project> |