21 lines
686 B
XML
21 lines
686 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac" Version="6.1.0" />
|
|
<PackageReference Include="Dapper" Version="2.0.78" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StockDal.Interface\StockDal.Interface.csproj" />
|
|
<ProjectReference Include="..\StockDal\StockDal.csproj" />
|
|
<ProjectReference Include="..\StockDomain\StockDomain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |