This repository was archived by the owner on May 15, 2024. It is now read-only.
File tree 3 files changed +4
-3
lines changed
DeviceTests/DeviceTests.Shared
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 27
27
<PackageReference Include =" xunit" Version =" 2.4.1" />
28
28
<PackageReference Include =" xunit.runner.devices" Version =" 2.5.25" />
29
29
<PackageReference Include =" UnitTests.HeadlessRunner" Version =" 2.0.0" />
30
- <PackageReference Include =" System.Numerics.Vectors" Version =" 4.5.0" />
31
30
<ProjectReference Include =" ..\..\Xamarin.Essentials\Xamarin.Essentials.csproj" />
32
31
</ItemGroup >
33
32
<ItemGroup Condition =" $(TargetFramework.StartsWith('uap10.0')) " >
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ stages:
34
34
jobs :
35
35
- template : .ci/build.v1.yml@components
36
36
parameters :
37
+ dotnet : ' 3.1.415'
38
+ dotnetStable : ' 3.1.415'
37
39
${{ if eq(variables['System.TeamProject'], 'devdiv') }} : # The AzurePipelines-EO pool is only available in DevDiv
38
40
windowsAgentPoolName : AzurePipelines-EO
39
41
windowsImage : ' ' # Override the 'windows-latest' default settings
Original file line number Diff line number Diff line change @@ -47,9 +47,9 @@ Task("tests")
47
47
48
48
foreach ( var csproj in GetFiles ( "./Tests/**/*.csproj" ) ) {
49
49
try {
50
- DotNetCoreTest ( csproj . FullPath , new DotNetCoreTestSettings {
50
+ DotNetTest ( csproj . FullPath , new DotNetTestSettings {
51
51
Configuration = "Release" ,
52
- Logger = $ "trx;LogFileName={ csproj . GetFilenameWithoutExtension ( ) } .trx",
52
+ Loggers = new [ ] { $ "trx;LogFileName={ csproj . GetFilenameWithoutExtension ( ) } .trx" } ,
53
53
EnvironmentVariables = new Dictionary < string , string > {
54
54
{ "RestoreConfigFile" , RESTORE_CONFIG }
55
55
}
You can’t perform that action at this time.
0 commit comments