PIbd-32_Bondarenko_M.S._COP_16/WinForm/AppView/AppView.csproj

37 lines
1.5 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2023-11-01 21:29:21 +04:00
<ItemGroup>
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
<PackageReference Include="ExcelFormsLibrary" Version="1.0.0" />
2023-11-01 21:29:21 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.13">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="WinFormsLibrary" Version="1.0.0" />
2023-11-01 21:29:21 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Contracts\Contracts.csproj" />
<ProjectReference Include="..\DataBaseImplement\DataBaseImplement.csproj" />
2023-11-02 00:46:16 +04:00
<ProjectReference Include="..\PdfFormsLibrary\PdfFormsLibrary.csproj" />
2023-11-15 01:14:11 +04:00
<ProjectReference Include="..\PluginsConventionLibrary\PluginsConventionLibrary.csproj" />
2023-11-01 21:29:21 +04:00
</ItemGroup>
2023-11-15 01:14:11 +04:00
<Target Name="CreatePluginsFolder" BeforeTargets="PreBuildEvent" Condition="!Exists('$(SolutionDir)Plugins')">
<MakeDir Directories="$(SolutionDir)Plugins" />
</Target>
<Target Name="CopyPlugins" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir).Plugins\*.dll&quot;" />
</Target>
</Project>