Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit 188958b

Browse files
dotnet-maestro[bot]nosami
authored andcommitted
[master] Update dependencies from dotnet/arcade (dotnet#9890)
[master] Update dependencies from dotnet/arcade - Updates: - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20374.1 to 5.0.0-beta.20407.3 - retain 3.1 sdk
1 parent 138a08c commit 188958b

File tree

11 files changed

+158
-69
lines changed

11 files changed

+158
-69
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20374.1">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20407.3">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>f6192d1e284a08ac05041d05fa6e60dec74b24f5</Sha>
8+
<Sha>ea8f37e8982dc22022b33c5e151081ad04d923a6</Sha>
99
</Dependency>
1010
</ToolsetDependencies>
1111
</Dependencies>

eng/common/SetupNugetSources.ps1

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# See example YAML call for this script below. Note the use of the variable `$(dn-bot-dnceng-artifact-feeds-rw)`
1212
# from the AzureDevOps-Artifact-Feeds-Pats variable group.
1313
#
14+
# Any disabledPackageSources entries which start with "darc-int" will be re-enabled as part of this script executing
15+
#
1416
# - task: PowerShell@2
1517
# displayName: Setup Private Feeds Credentials
1618
# condition: eq(variables['Agent.OS'], 'Windows_NT')
@@ -94,6 +96,14 @@ function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $Passw
9496
}
9597
}
9698

99+
function EnablePrivatePackageSources($DisabledPackageSources) {
100+
$maestroPrivateSources = $DisabledPackageSources.SelectNodes("add[contains(@key,'darc-int')]")
101+
ForEach ($DisabledPackageSource in $maestroPrivateSources) {
102+
Write-Host "`tEnsuring private source '$($DisabledPackageSource.key)' is enabled"
103+
$DisabledPackageSource.SetAttribute("value", "false")
104+
}
105+
}
106+
97107
if (!(Test-Path $ConfigFile -PathType Leaf)) {
98108
Write-PipelineTelemetryError -Category 'Build' -Message "Eng/common/SetupNugetSources.ps1 returned a non-zero exit code. Couldn't find the NuGet config file: $ConfigFile"
99109
ExitWithExitCode 1
@@ -123,6 +133,13 @@ if ($creds -eq $null) {
123133
$doc.DocumentElement.AppendChild($creds) | Out-Null
124134
}
125135

136+
# Check for disabledPackageSources; we'll enable any darc-int ones we find there
137+
$disabledSources = $doc.DocumentElement.SelectSingleNode("disabledPackageSources")
138+
if ($disabledSources -ne $null) {
139+
Write-Host "Checking for any darc-int disabled package sources in the disabledPackageSources node"
140+
EnablePrivatePackageSources -DisabledPackageSources $disabledSources
141+
}
142+
126143
$userName = "dn-bot"
127144

128145
# Insert credential nodes for Maestro's private feeds

eng/common/SetupNugetSources.sh

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# See example YAML call for this script below. Note the use of the variable `$(dn-bot-dnceng-artifact-feeds-rw)`
1414
# from the AzureDevOps-Artifact-Feeds-Pats variable group.
1515
#
16+
# Any disabledPackageSources entries which start with "darc-int" will be re-enabled as part of this script executing.
17+
#
1618
# - task: Bash@3
1719
# displayName: Setup Private Feeds Credentials
1820
# inputs:
@@ -63,7 +65,7 @@ if [ "$?" != "0" ]; then
6365
ConfigNodeHeader="<configuration>"
6466
PackageSourcesTemplate="${TB}<packageSources>${NL}${TB}</packageSources>"
6567

66-
sed -i.bak "s|$ConfigNodeHeader|$ConfigNodeHeader${NL}$PackageSourcesTemplate|" NuGet.config
68+
sed -i.bak "s|$ConfigNodeHeader|$ConfigNodeHeader${NL}$PackageSourcesTemplate|" $ConfigFile
6769
fi
6870

6971
# Ensure there is a <packageSourceCredentials>...</packageSourceCredentials> section.
@@ -74,7 +76,7 @@ if [ "$?" != "0" ]; then
7476
PackageSourcesNodeFooter="</packageSources>"
7577
PackageSourceCredentialsTemplate="${TB}<packageSourceCredentials>${NL}${TB}</packageSourceCredentials>"
7678

77-
sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourcesNodeFooter${NL}$PackageSourceCredentialsTemplate|" NuGet.config
79+
sed -i.bak "s|$PackageSourcesNodeFooter|$PackageSourcesNodeFooter${NL}$PackageSourceCredentialsTemplate|" $ConfigFile
7880
fi
7981

8082
PackageSources=()
@@ -146,3 +148,20 @@ for FeedName in ${PackageSources[@]} ; do
146148
sed -i.bak "s|$PackageSourceCredentialsNodeFooter|$NewCredential${NL}$PackageSourceCredentialsNodeFooter|" $ConfigFile
147149
fi
148150
done
151+
152+
# Re-enable any entries in disabledPackageSources where the feed name contains darc-int
153+
grep -i "<disabledPackageSources>" $ConfigFile
154+
if [ "$?" == "0" ]; then
155+
DisabledDarcIntSources=()
156+
echo "Re-enabling any disabled \"darc-int\" package sources in $ConfigFile"
157+
DisabledDarcIntSources+=$(grep -oh '"darc-int-[^"]*" value="true"' $ConfigFile | tr -d '"')
158+
for DisabledSourceName in ${DisabledDarcIntSources[@]} ; do
159+
if [[ $DisabledSourceName == darc-int* ]]
160+
then
161+
OldDisableValue="add key=\"$DisabledSourceName\" value=\"true\""
162+
NewDisableValue="add key=\"$DisabledSourceName\" value=\"false\""
163+
sed -i.bak "s|$OldDisableValue|$NewDisableValue|" $ConfigFile
164+
echo "Neutralized disablePackageSources entry for '$DisabledSourceName'"
165+
fi
166+
done
167+
fi

eng/common/cross/arm64/tizen-fetch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ fetch_tizen_pkgs aarch64 gcc glibc glibc-devel libicu libicu-devel libatomic lin
161161
Inform "fetch coreclr packages"
162162
fetch_tizen_pkgs aarch64 lldb lldb-devel libgcc libstdc++ libstdc++-devel libunwind libunwind-devel lttng-ust-devel lttng-ust userspace-rcu-devel userspace-rcu
163163
Inform "fetch corefx packages"
164-
fetch_tizen_pkgs aarch64 libcom_err libcom_err-devel zlib zlib-devel libopenssl libopenssl1.1-devel krb5 krb5-devel
164+
fetch_tizen_pkgs aarch64 libcom_err libcom_err-devel zlib zlib-devel libopenssl11 libopenssl1.1-devel krb5 krb5-devel
165165

166166
Inform "Initialize standard unified"
167167
fetch_tizen_pkgs_init standard unified

eng/common/cross/armel/tizen-fetch.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ ! -d $TMPDIR ]; then
5151
mkdir -p $TMPDIR
5252
fi
5353

54-
TIZEN_URL=http://download.tizen.org/releases/milestone/tizen
54+
TIZEN_URL=http://download.tizen.org/snapshots/tizen
5555
BUILD_XML=build.xml
5656
REPOMD_XML=repomd.xml
5757
PRIMARY_XML=primary.xml
@@ -157,12 +157,11 @@ fetch_tizen_pkgs()
157157
Inform "Initialize arm base"
158158
fetch_tizen_pkgs_init standard base
159159
Inform "fetch common packages"
160-
fetch_tizen_pkgs armv7l gcc glibc glibc-devel libicu libicu-devel libatomic
161-
fetch_tizen_pkgs noarch linux-glibc-devel
160+
fetch_tizen_pkgs armv7l gcc glibc glibc-devel libicu libicu-devel libatomic linux-glibc-devel
162161
Inform "fetch coreclr packages"
163162
fetch_tizen_pkgs armv7l lldb lldb-devel libgcc libstdc++ libstdc++-devel libunwind libunwind-devel lttng-ust-devel lttng-ust userspace-rcu-devel userspace-rcu
164163
Inform "fetch corefx packages"
165-
fetch_tizen_pkgs armv7l libcom_err libcom_err-devel zlib zlib-devel libopenssl libopenssl-devel krb5 krb5-devel libcurl libcurl-devel
164+
fetch_tizen_pkgs armv7l libcom_err libcom_err-devel zlib zlib-devel libopenssl11 libopenssl1.1-devel krb5 krb5-devel
166165

167166
Inform "Initialize standard unified"
168167
fetch_tizen_pkgs_init standard unified

eng/common/cross/toolchain.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if(TARGET_ARCH_NAME STREQUAL "armel")
1515
set(CMAKE_SYSTEM_PROCESSOR armv7l)
1616
set(TOOLCHAIN "arm-linux-gnueabi")
1717
if("$ENV{__DistroRid}" MATCHES "tizen.*")
18-
set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi/6.2.1")
18+
set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi/9.2.0")
1919
endif()
2020
elseif(TARGET_ARCH_NAME STREQUAL "arm")
2121
set(CMAKE_SYSTEM_PROCESSOR armv7l)
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test">
2+
3+
<PropertyGroup Condition="'$(AGENT_OS)' == 'Windows_NT'">
4+
<Python>py -3</Python>
5+
<HelixPreCommands>$(HelixPreCommands);call %HELIX_CORRELATION_PAYLOAD%\performance\tools\machine-setup.cmd;set PYTHONPATH=%HELIX_WORKITEM_PAYLOAD%\scripts%3B%HELIX_WORKITEM_PAYLOAD%</HelixPreCommands>
6+
<ArtifactsDirectory>%HELIX_CORRELATION_PAYLOAD%\artifacts\BenchmarkDotNet.Artifacts</ArtifactsDirectory>
7+
<BaseDirectory>$HELIX_CORRELATION_PAYLOAD</BaseDirectory>
8+
<PerformanceDirectory>$(BaseDirectory)/performance</PerformanceDirectory>
9+
</PropertyGroup>
10+
11+
<PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'">
12+
<WorkItemCommand>$(PerformanceDirectory)/scripts/benchmarks_ci.py --csproj $(PerformanceDirectory)/$(TargetCsproj)</WorkItemCommand>
13+
<CliArguments>--dotnet-versions $DOTNET_VERSION --cli-source-info args --cli-branch $PERFLAB_BRANCH --cli-commit-sha $PERFLAB_HASH --cli-repository https://github.com/$PERFLAB_REPO --cli-source-timestamp $PERFLAB_BUILDTIMESTAMP</CliArguments>
14+
<Python>python3</Python>
15+
<CoreRun>$(BaseDirectory)/Core_Root/corerun</CoreRun>
16+
<HelixPreCommands>$(HelixPreCommands);chmod +x $(PerformanceDirectory)/tools/machine-setup.sh;. $(PerformanceDirectory)/tools/machine-setup.sh</HelixPreCommands>
17+
<ArtifactsDirectory>$(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts</ArtifactsDirectory>
18+
<BaselineArtifactsDirectory>$(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts_Baseline</BaselineArtifactsDirectory>
19+
<ResultsComparer>$(PerformanceDirectory)/src/tools/ResultsComparer/ResultsComparer.csproj</ResultsComparer>
20+
<DotnetExe>$(PerformanceDirectory)/tools/dotnet/$(Architecture)/dotnet</DotnetExe>
21+
<Percent>%25</Percent>
22+
<XMLResults>$HELIX_WORKITEM_ROOT/testResults.xml</XMLResults>
23+
</PropertyGroup>
24+
25+
<ItemGroup>
26+
<HelixCorrelationPayload Include="$(CorrelationPayloadDirectory)">
27+
<PayloadDirectory>%(Identity)</PayloadDirectory>
28+
</HelixCorrelationPayload>
29+
</ItemGroup>
30+
31+
<ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT'">
32+
<HelixWorkItem Include="Crossgen System.Private.Xml.dll">
33+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
34+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
35+
</HelixWorkItem>
36+
<HelixWorkItem Include="Crossgen System.Linq.Expressions.dll">
37+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
38+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
39+
</HelixWorkItem>
40+
<HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.VisualBasic.dll">
41+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
42+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
43+
</HelixWorkItem>
44+
<HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.CSharp.dll">
45+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
46+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
47+
</HelixWorkItem>
48+
<HelixWorkItem Include="Crossgen System.Private.CoreLib.dll">
49+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
50+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
51+
</HelixWorkItem>
52+
</ItemGroup>
53+
54+
<ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT' and '$(Architecture)' == 'x64'">
55+
<HelixWorkItem Include="Crossgen2 System.Private.Xml.dll">
56+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
57+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
58+
</HelixWorkItem>
59+
<HelixWorkItem Include="Crossgen2 System.Linq.Expressions.dll">
60+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
61+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
62+
</HelixWorkItem>
63+
<HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.VisualBasic.dll">
64+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
65+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
66+
</HelixWorkItem>
67+
<HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.CSharp.dll">
68+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
69+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
70+
</HelixWorkItem>
71+
<HelixWorkItem Include="Crossgen2 System.Private.CoreLib.dll">
72+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
73+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
74+
</HelixWorkItem>
75+
<HelixWorkItem Include="Crossgen2 Composite Framework R2R">
76+
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
77+
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --composite %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\framework-r2r.dll.rsp --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
78+
<Timeout>1:00</Timeout>
79+
</HelixWorkItem>
80+
</ItemGroup>
81+
</Project>

eng/common/performance/perfhelixpublish.proj renamed to eng/common/performance/microbenchmarks.proj

Lines changed: 4 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
<XMLResults>$HELIX_WORKITEM_ROOT/testResults.xml</XMLResults>
4242
</PropertyGroup>
4343

44+
<PropertyGroup Condition="'$(WasmDotnet)' == 'true'">
45+
<CliArguments>$(CliArguments) --wasm</CliArguments>
46+
</PropertyGroup>
47+
4448
<PropertyGroup Condition="'$(MonoDotnet)' == 'true' and '$(AGENT_OS)' == 'Windows_NT'">
4549
<CoreRunArgument>--corerun %HELIX_CORRELATION_PAYLOAD%\dotnet-mono\shared\Microsoft.NETCore.App\5.0.0\corerun.exe</CoreRunArgument>
4650
</PropertyGroup>
@@ -137,56 +141,4 @@
137141
<Timeout>4:00</Timeout>
138142
</HelixWorkItem>
139143
</ItemGroup>
140-
141-
<ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT'">
142-
<HelixWorkItem Include="Crossgen System.Private.Xml.dll">
143-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
144-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
145-
</HelixWorkItem>
146-
<HelixWorkItem Include="Crossgen System.Linq.Expressions.dll">
147-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
148-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
149-
</HelixWorkItem>
150-
<HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.VisualBasic.dll">
151-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
152-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
153-
</HelixWorkItem>
154-
<HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.CSharp.dll">
155-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
156-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
157-
</HelixWorkItem>
158-
<HelixWorkItem Include="Crossgen System.Private.CoreLib.dll">
159-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
160-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
161-
</HelixWorkItem>
162-
</ItemGroup>
163-
164-
<ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT' and '$(Architecture)' == 'x64'">
165-
<HelixWorkItem Include="Crossgen2 System.Private.Xml.dll">
166-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
167-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
168-
</HelixWorkItem>
169-
<HelixWorkItem Include="Crossgen2 System.Linq.Expressions.dll">
170-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
171-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
172-
</HelixWorkItem>
173-
<HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.VisualBasic.dll">
174-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
175-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
176-
</HelixWorkItem>
177-
<HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.CSharp.dll">
178-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
179-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
180-
</HelixWorkItem>
181-
<HelixWorkItem Include="Crossgen2 System.Private.CoreLib.dll">
182-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
183-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
184-
</HelixWorkItem>
185-
<HelixWorkItem Include="Crossgen2 Composite Framework R2R">
186-
<PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory>
187-
<Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --composite %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\framework-r2r.dll.rsp --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command>
188-
<Timeout>1:00</Timeout>
189-
</HelixWorkItem>
190-
191-
</ItemGroup>
192144
</Project>

0 commit comments

Comments
 (0)