mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-19 21:03:11 -07:00
Merge 20281c25a5
into 06eb235d48
This commit is contained in:
commit
dfa77c3f8a
4 changed files with 15 additions and 9 deletions
5
.github/workflows/action-ci.yml
vendored
5
.github/workflows/action-ci.yml
vendored
|
@ -162,8 +162,7 @@ jobs:
|
|||
- uses: ilammy/msvc-dev-cmd@v1 # this is a workaround because microsoft/vstest-action is broken.
|
||||
name: Setup dev tools
|
||||
- run: |
|
||||
vstest.console.exe ${{ github.workspace }}\download\publish\CalculatorUITests.dll `
|
||||
/Platform:x64 `
|
||||
/Settings:${{ github.workspace }}\download\publish\CalculatorUITests.ci.runsettings
|
||||
${{ github.workspace }}\download\publish\CalculatorUITests.exe `
|
||||
--settings ${{ github.workspace }}\download\publish\CalculatorUITests.ci.runsettings
|
||||
shell: pwsh
|
||||
name: Run UI tests
|
||||
|
|
7
Directory.Build.props
Normal file
7
Directory.Build.props
Normal file
|
@ -0,0 +1,7 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
|
||||
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
|
||||
<EnableMSTestRunner>true</EnableMSTestRunner>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -1,10 +1,10 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Appium.WebDriver" Version="4.4.0" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="3.8.2" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="4.7.3" />
|
||||
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
||||
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
||||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
||||
<PackageReference Include="MSTest.TestAdapter" Version="3.8.2" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="3.8.2" />
|
||||
<PackageReference Include="Appium.WebDriver" Version="4.4.0" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="4.7.3" />
|
||||
</ItemGroup>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue