25 lines
715 B
XML
25 lines
715 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|||
|
<OutputPath>..\..\WindowDestopExtensions\</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>
|
|||
|
|
|||
|
</Project>
|