37 lines
1.5 KiB
XML
37 lines
1.5 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="ExcelFormsLibrary" Version="1.0.0" />
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Contracts\Contracts.csproj" />
|
|
<ProjectReference Include="..\DataBaseImplement\DataBaseImplement.csproj" />
|
|
<ProjectReference Include="..\PdfFormsLibrary\PdfFormsLibrary.csproj" />
|
|
<ProjectReference Include="..\PluginsConventionLibrary\PluginsConventionLibrary.csproj" />
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
</Project> |