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.MSTest.csproj
More file actions
48 lines (40 loc) · 1.99 KB
/
UITests.Tests.MSTest.csproj
File metadata and controls
48 lines (40 loc) · 1.99 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RuntimeIdentifier>win10-x86</RuntimeIdentifier>
<TargetFrameworks>net5.0-windows10.0.18362</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PlatformTarget>x86</PlatformTarget>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<ProjectReunionCopyXamlToolingLibs>false</ProjectReunionCopyXamlToolingLibs>
<IsTestHarness>true</IsTestHarness>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="..\UITests.Tests.Shared\AppService.proto" GrpcServices="Client">
<Link>AppService.proto</Link>
</Protobuf>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Common" Version="8.0.0" />
<!-- MSTest -->
<PackageReference Include="MSTest.TestAdapter" Version="2.2.6-preview-20211011-01" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.6-preview-20211011-01" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0-preview-20211109-03" />
<!-- Microsoft.UI.Xaml MSTest Extension -->
<PackageReference Include="Microsoft.Internal.MUXTestInfra.MSTest" Version="3.0.0-zmain.210930.1" />
<!-- System packages -->
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" />
<!-- Windows SDK packages -->
<PackageReference Include="Microsoft.Windows.Apps.Test" Version="1.0.181205002" />
<!-- GRPC packages -->
<PackageReference Include="Google.Protobuf" Version="3.15.7" />
<PackageReference Include="Grpc.Core" Version="2.36.4" />
<PackageReference Include="Grpc.Net.Client" Version="2.36.0" />
<PackageReference Include="Grpc.Tools" Version="2.36.4" />
</ItemGroup>
<Import Project="..\UITests.Tests.Shared\UITests.Tests.Shared.projitems" Label="Shared" />
</Project>