28 lines
972 B
XML
28 lines
972 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BLL\BLL.csproj" />
|
|
<ProjectReference Include="..\CAB\CAB.csproj" />
|
|
<ProjectReference Include="..\CCH\CCH.csproj" />
|
|
<ProjectReference Include="..\CMB\CMB.csproj" />
|
|
<ProjectReference Include="..\CPM\CPM.csproj" />
|
|
<ProjectReference Include="..\CPT\CPT.csproj" />
|
|
<ProjectReference Include="..\DAL\DAL.csproj" />
|
|
<ProjectReference Include="..\MLL\MLL.csproj" />
|
|
<ProjectReference Include="..\TLL\TLL.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AForge.Video" Version="2.2.5" />
|
|
<PackageReference Include="AForge.Video.DirectShow" Version="2.2.5" />
|
|
</ItemGroup>
|
|
|
|
</Project> |