34 lines
1.4 KiB
XML
34 lines
1.4 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="ComponentsLibraryNet60" Version="1.0.0" />
|
|
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.11">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Unity" Version="5.11.10" />
|
|
<PackageReference Include="UnvisableComponents" Version="1.0.0" />
|
|
<PackageReference Include="VisableComponents" Version="1.0.9" />
|
|
<PackageReference Include="VisualCompLib" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ClientBusinessLogic\ClientBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\ClientsDatabaseImplement\ClientsDatabaseImplement.csproj" />
|
|
<ProjectReference Include="..\Plugins\Plugins.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)plugin\*.dll"" />
|
|
</Target>
|
|
|
|
</Project> |