This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release/2.2] Remove the Smarty dependency and move Windows ARM to He…
…lix queue Port (partially) the following changes: * Build xunit wrappers the same way on windows and unix (#18695) * Work around cmd command length limit in xunit Exec task (#19095) * Update vc-runtime package to support ARM and ARM64 with current builds (#19265) * build-test - fix TestWrapper CS warnings (#19180) * Clean up build.cmd/build-test.cmd/runtest.cmd (#19291) * Use runtest.py to run tests for all platforms (#19213) * Updating runtest.py so that it works with Python 3 (#19768) * Fix build-test.sh wrapper build (#19779) * Move ARM64 Windows boxen to be Helix-provisioned (#20204) * Runtest.py on Windows Arm(64) (#20227) * Use runtest.cmd for arm(64) windows testing (#20301) * Do not restore or initialize buildtools for x86/arm64 (#20370) * Add hack for arm64/x86 to skip build tools restore (#20390) Update Xunit to 2.4.1 prerelease version Use the latest version (dbf0bf1) of tests/runtest.py
- Loading branch information
Showing
38 changed files
with
2,737 additions
and
588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- This file contains build properties that apply to product | ||
projects and test projects. It's imported by | ||
tests/dir.common.props, and the global dir.props. --> | ||
|
||
<PropertyGroup> | ||
<CoreclrDir>$(MSBuildThisFileDirectory)</CoreclrDir> | ||
<PackagesDir>$(CoreclrDir)/packages</PackagesDir> | ||
</PropertyGroup> | ||
|
||
<!-- Set default Configuration and Platform --> | ||
<PropertyGroup> | ||
<BuildArch>$(__BuildArch)</BuildArch> | ||
<BuildArch Condition="'$(__BuildArch)'==''">x64</BuildArch> | ||
<BuildArch Condition="'$(__BuildArch)' == 'amd64'">x64</BuildArch> | ||
|
||
<BuildType>$(__BuildType)</BuildType> | ||
<BuildType Condition="'$(__BuildType)'==''">Debug</BuildType> | ||
<BuildType Condition="'$(__BuildType)' == 'debug'">Debug</BuildType> | ||
<BuildType Condition="'$(__BuildType)' == 'release'">Release</BuildType> | ||
<BuildType Condition="'$(__BuildType)' == 'checked'">Checked</BuildType> | ||
|
||
<BuildOS>$(__BuildOS)</BuildOS> | ||
<BuildOS Condition="'$(__BuildOS)' == ''">Windows_NT</BuildOS> | ||
|
||
<Configuration Condition="'$(Configuration)' == ''">$(BuildType)</Configuration> | ||
<Platform Condition="'$(Platform)' == ''">$(BuildArch)</Platform> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<RestorePackagesPath>$(PackagesDir)</RestorePackagesPath> | ||
</PropertyGroup> | ||
|
||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.