DepartmentProject/DepartmentPortal/Security/SecurityWindowsDesktop/SecurityWindowsDesktop.csproj
2021-03-28 10:31:10 +04:00

29 lines
899 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
</PropertyGroup>
<ItemGroup>
<Folder Include="Accesses\" />
<Folder Include="EnviromentSettings\" />
<Folder Include="Roles\" />
<Folder Include="Users\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Common\DesktopTools\DesktopTools.csproj" />
<ProjectReference Include="..\SecurityBusinessLogic\SecurityBusinessLogic.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)$(ProjectName).dll&quot; &quot;$(SolutionDir)WindowDestopExtensions\$(ProjectName).dll&quot;" />
</Target>
</Project>