-
Notifications
You must be signed in to change notification settings - Fork 683
Upgrade tooling for 9.0x #5483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade tooling for 9.0x #5483
Changes from 19 commits
e3c1893
6225452
eb1c382
d70d1bb
4f316c8
20d94c5
a152212
762f5ea
48f233b
af944fe
f411371
9d559e2
d5adc78
b9641f1
d27a6cf
b204aac
2a94c7c
c15d3c4
239c049
e4bb2a6
4158dcf
18236cb
6a182aa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,12 @@ | |
This should get updated each time packages are shipped. | ||
--> | ||
<BaselineVersionForPackageValidation>8.0.1</BaselineVersionForPackageValidation> | ||
<DefaultTargetFramework>net8.0</DefaultTargetFramework> | ||
<!-- dotnet 8.0 versions for running tests --> | ||
<DotNetRuntimeVersionForTesting>8.0.8</DotNetRuntimeVersionForTesting> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm wondering how we can keep this one up-to-date. One option would be if we use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
<!-- dotnet 8.0 versions for running tests - used for workload tests --> | ||
<DotNetSdkVersionForTesting>8.0.401</DotNetSdkVersionForTesting> | ||
|
||
<UseVSTestRunner>true</UseVSTestRunner> | ||
<!-- Enable to remove prerelease label. --> | ||
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion> | ||
|
@@ -29,10 +35,10 @@ | |
<MicrosoftDeveloperControlPlanewindowsamd64PackageVersion>0.7.1</MicrosoftDeveloperControlPlanewindowsamd64PackageVersion> | ||
<MicrosoftDeveloperControlPlanewindowsarm64PackageVersion>0.7.1</MicrosoftDeveloperControlPlanewindowsarm64PackageVersion> | ||
<!-- Other --> | ||
<MicrosoftDotNetRemoteExecutorPackageVersion>8.0.0-beta.24426.2</MicrosoftDotNetRemoteExecutorPackageVersion> | ||
<MicrosoftDotNetXUnitExtensionsPackageVersion>8.0.0-beta.24426.2</MicrosoftDotNetXUnitExtensionsPackageVersion> | ||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>8.0.0-beta.24426.2</MicrosoftDotNetBuildTasksInstallersPackageVersion> | ||
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>8.0.0-beta.24426.2</MicrosoftDotNetBuildTasksWorkloadsPackageVersion> | ||
<MicrosoftDotNetRemoteExecutorPackageVersion>9.0.0-beta.24453.1</MicrosoftDotNetRemoteExecutorPackageVersion> | ||
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.24453.1</MicrosoftDotNetXUnitExtensionsPackageVersion> | ||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>9.0.0-beta.24453.1</MicrosoftDotNetBuildTasksInstallersPackageVersion> | ||
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>9.0.0-beta.24453.1</MicrosoftDotNetBuildTasksWorkloadsPackageVersion> | ||
<MicrosoftExtensionsHttpResiliencePackageVersion>8.8.0</MicrosoftExtensionsHttpResiliencePackageVersion> | ||
<MicrosoftExtensionsDiagnosticsTestingPackageVersion>8.8.0</MicrosoftExtensionsDiagnosticsTestingPackageVersion> | ||
<MicrosoftExtensionsConfigurationAbstractionsPackageVersion>8.0.0</MicrosoftExtensionsConfigurationAbstractionsPackageVersion> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0build.ps1""" %*" | ||
exit /b %ErrorLevel% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From the first commit - does dropping this seem correct? The assembly has moved to
dotnet/arcade
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that is fine, and I think you can also drop the dependency over from lines 152-155 above for that matter (not sure why we had both), but shouldn't we have now a new dependency coming from arcade for it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need to add a dependency like
dotnet/runtime
has:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added that here.