25 lines
966 B
XML
25 lines
966 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BarsukovComponents" Version="1.0.0" />
|
|
<PackageReference Include="BelianinComponents" Version="1.0.0" />
|
|
<PackageReference Include="KashinComponent" Version="1.0.0" />
|
|
<PackageReference Include="KryukovLib" Version="1.0.0" />
|
|
<PackageReference Include="Unity" Version="5.11.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EnterpriseBusinessLogic\EnterpriseBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\EnterpriseContracts\EnterpriseContracts.csproj" />
|
|
<ProjectReference Include="..\EnterpriseDataBaseImplement\EnterpriseDataBaseImplement.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |