35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Appium.WebDriver" Version="6.0.1" />
|
|||
|
<PackageReference Include="FlaUI.Core" Version="4.0.0" />
|
|||
|
<PackageReference Include="FlaUI.UIA3" Version="4.0.0" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
|
|||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
|||
|
<PackageReference Include="Microsoft.TestPlatform" Version="17.12.0" />
|
|||
|
<PackageReference Include="Moq" Version="4.20.72" />
|
|||
|
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
|
|||
|
<PackageReference Include="xunit" Version="2.9.2" />
|
|||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\EmployeeManagmentBusinessLogic\EmployeeManagmentBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\EmployeeManagmentContracts\EmployeeManagmentContracts.csproj" />
|
|||
|
<ProjectReference Include="..\EmployeeManagmentDataBaseImplement\EmployeeManagmentDataBaseImplement.csproj" />
|
|||
|
<ProjectReference Include="..\EmployeeManagmentDataModels\EmployeeManagmentDataModels.csproj" />
|
|||
|
<ProjectReference Include="..\EmployeeManagmentView\EmployeeManagmentView.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|