2021-03-27 23:50:29 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-03-28 10:31:10 +04:00
|
|
|
|
<OutputPath></OutputPath>
|
2021-03-27 23:50:29 +04:00
|
|
|
|
</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>
|
|
|
|
|
|
2021-03-28 10:31:10 +04:00
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
<Exec Command="copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)WindowDestopExtensions\$(ProjectName).dll"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2021-03-27 23:50:29 +04:00
|
|
|
|
</Project>
|