-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDotPilot.UITests.csproj
More file actions
41 lines (37 loc) · 1.75 KB
/
DotPilot.UITests.csproj
File metadata and controls
41 lines (37 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsTestProject>true</IsTestProject>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<UiAutomationHostConfiguration>Release</UiAutomationHostConfiguration>
<UiAutomationHostProject>..\DotPilot\DotPilot.csproj</UiAutomationHostProject>
<UiAutomationHostTargetFramework>net10.0-browserwasm</UiAutomationHostTargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions"/>
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
<PackageReference Include="Newtonsoft.Json"/>
<PackageReference Include="NUnit"/>
<PackageReference Include="NUnit3TestAdapter"/>
<PackageReference Include="Uno.UITest.Helpers"/>
<PackageReference Include="Xamarin.UITest"/>
<PackageReference Include="GitHubActionsTestLogger">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DotPilot\DotPilot.csproj" ReferenceOutputAssembly="false" />
</ItemGroup>
<Target
Name="BuildUiAutomationBrowserHost"
BeforeTargets="VSTest"
Condition="'$(DesignTimeBuild)' != 'true'">
<MSBuild
Projects="$(UiAutomationHostProject)"
Targets="Build"
BuildInParallel="false"
Properties="Configuration=$(UiAutomationHostConfiguration);TargetFramework=$(UiAutomationHostTargetFramework);IsUiAutomationMappingEnabled=True" />
</Target>
</Project>