Skip to content

Commit 604e7be

Browse files
authored
[rel/17.7] Fix cannot find System.Text.Json (#4669)
* Fix cannot find System.Text.Json * Bump to 17.7.2 * Use dotnet install script directly to get latest fix
1 parent 76fea14 commit 604e7be

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
is trying to parse that version and will consider any version with more than 4 `.` in it as invalid.
99
-->
1010
<SemanticVersioningV1>true</SemanticVersioningV1>
11-
<VersionPrefix>17.7.1</VersionPrefix>
11+
<VersionPrefix>17.7.2</VersionPrefix>
1212
<PreReleaseVersionLabel>release</PreReleaseVersionLabel>
1313
</PropertyGroup>
1414
<PropertyGroup Label="Arcade settings">

eng/common/tools.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) {
263263
if (!(Test-Path $installScript)) {
264264
Create-Directory $dotnetRoot
265265
$ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit
266-
$uri = "https://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1"
266+
$uri = "https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1"
267267

268268
Retry({
269269
Write-Host "GET $uri"

src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
<ItemGroup>
9292
<MicrosoftCodeCoverageInstrumentationFiles Include="$(PkgMicrosoft_CodeCoverage_Instrumentation)\runtimes\win\native\*"></MicrosoftCodeCoverageInstrumentationFiles>
9393
<MicrosoftCodeCoverageIOFiles Include="$(PkgMicrosoft_CodeCoverage_IO)\lib\netstandard2.0\**\*"></MicrosoftCodeCoverageIOFiles>
94-
<MicrosoftExtensionsDependencyModelFiles Include="$(PkgMicrosoft_Extensions_DependencyModel)\lib\netstandard2.0\*"></MicrosoftExtensionsDependencyModelFiles>
94+
<MicrosoftExtensionsDependencyModelFiles Include="$(PkgMicrosoft_Extensions_DependencyModel)\lib\net451\*"></MicrosoftExtensionsDependencyModelFiles>
9595
<MicrosoftExtensionsFileSystemGlobbingFiles Include="$(PkgMicrosoft_Extensions_FileSystemGlobbing)\lib\netstandard2.0\*"></MicrosoftExtensionsFileSystemGlobbingFiles>
9696
<PlatformAbstractionsDepsJsonFiles Include="..\..\Microsoft.TestPlatform.PlatformAbstractions\bin\$(Configuration)\$(TargetFramework)\*.deps.json"></PlatformAbstractionsDepsJsonFiles>
9797
<PackageDepsJsonFiles Include="..\..\Microsoft.TestPlatform.PlatformAbstractions\bin\$(Configuration)\$(TargetFramework)\*.deps.json"></PackageDepsJsonFiles>

0 commit comments

Comments
 (0)