This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathUITests.Tests.TAEF.csproj
More file actions
83 lines (73 loc) · 3.7 KB
/
Copy pathUITests.Tests.TAEF.csproj
File metadata and controls
83 lines (73 loc) · 3.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0-windows10.0.19041</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<LangVersion>9.0</LangVersion>
<PlatformTarget>x86</PlatformTarget>
<OutputType>Exe</OutputType>
<RuntimeIdentifier>win10-x86</RuntimeIdentifier>
<IsPackable>false</IsPackable>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<ProjectReunionCopyXamlToolingLibs>false</ProjectReunionCopyXamlToolingLibs>
</PropertyGroup>
<PropertyGroup>
<IsTestHarness>true</IsTestHarness>
<EnableDefaultItems>false</EnableDefaultItems>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<DefineConstants>$(DefineConstants);USING_TAEF</DefineConstants>
<TaefRootDirectory>$(PkgTAEF_Redist_Wlk)\build\Binaries\$(PlatformTarget)\CoreClr\</TaefRootDirectory>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\UITests.Tests.Shared\AppService.proto" GrpcServices="Client">
<Link>AppService.proto</Link>
</Protobuf>
</ItemGroup>
<ItemGroup>
<Compile Include="MainClass.cs" />
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\..\UITests.App.Package\AppPackages\*\*.msix" Link="%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
<None Include="$(MSBuildThisFileDirectory)\..\UITests.App.Package\AppPackages\*\Dependencies\$(PlatformTarget)\*.appx" Link="%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
<None Include="$(MSBuildThisFileDirectory)\..\UITests.App.Package\AppPackages\*\Dependencies\$(PlatformTarget)\*.msix" Link="%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
<None Include="$(MSBuildThisFileDirectory)\..\UITests.App.Package\*.pfx" Link="%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
<None Include="$(Pkgtaef_redist_wlk)\build\Binaries\x86\WTTlog.dll" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<None Include="UITests.App.dependencies.$(Configuration).txt">
<Link>UITests.App.dependencies.txt</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="TE.Managed">
<HintPath>$(TaefRootDirectory)TE.Managed.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="TE.ManagedTestMode">
<HintPath>$(TaefRootDirectory)TE.ManagedTestMode.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="Wex.Common.Managed">
<HintPath>$(TaefRootDirectory)Wex.Common.Managed.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="Wex.Logger.Interop">
<HintPath>$(TaefRootDirectory)Wex.Logger.Interop.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<!-- System packages -->
<PackageReference Include="System.Text.Json" Version="6.0.5" />
<!-- Microsoft.UI.Xaml TAEF Extensions -->
<PackageReference Include="Microsoft.Internal.MUXTestInfra.TAEF" Version="3.0.0-zmain.210930.1" />
<PackageReference Include="MUXCustomBuildTasks" Version="1.0.67" GeneratePathProperty="true" />
<PackageReference Include="TAEF.Redist.Wlk" Version="10.57.200928001" GeneratePathProperty="true" />
<!-- GRPC/Protobuf -->
<PackageReference Include="Grpc.Tools" Version="2.36.4" />
<PackageReference Include="Grpc.Net.Client" Version="2.36.0" />
<PackageReference Include="Grpc.Core" Version="2.36.4" />
<PackageReference Include="Google.Protobuf" Version="3.15.7" />
</ItemGroup>
<Import Project="..\UITests.Tests.Shared\UITests.Tests.Shared.projitems" Label="Shared" />
</Project>