2023-11-15 22:51:44 +04:00
|
|
|
|
<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>
|
2023-11-30 00:36:01 +04:00
|
|
|
|
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
|
|
|
|
|
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
|
2023-11-30 11:20:36 +04:00
|
|
|
|
<PackageReference Include="ExcelFormsLibrary" Version="1.0.0" />
|
2023-11-15 22:51:44 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.14">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-11-30 00:36:01 +04:00
|
|
|
|
<PackageReference Include="PdfFormsLibrary" Version="1.0.0" />
|
2023-11-15 22:51:44 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DateBaseImplement\DateBaseImplement.csproj" />
|
2023-12-14 01:22:20 +04:00
|
|
|
|
<ProjectReference Include="..\PluginsConventionLibrary\PluginsConventionLibrary.csproj" />
|
2023-11-30 11:20:36 +04:00
|
|
|
|
<ProjectReference Include="..\WinFormsLibrary\WinFormsLibraryAA.csproj" />
|
2023-11-15 22:51:44 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-12-14 01:22:20 +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 "$(TargetDir)*.dll" "$(SolutionDir)Plugins\*.dll"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2023-11-15 22:51:44 +04:00
|
|
|
|
</Project>
|