Skip to content

Commit

Permalink
Set specific version of Microsoft.Extensions.FileSystemGlobbing to fi…
Browse files Browse the repository at this point in the history
…x source build tests on centos (microsoft#4186)

Set specific version of Microsoft.Extensions.FileSystemGlobbing to fix source build tests on centos
  • Loading branch information
MarcoRossignoli committed Dec 9, 2022
1 parent 8da5d53 commit 0e7f432
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/build/TestPlatform.Dependencies.props
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@
<MicrosoftBuildUtilitiesCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildUtilitiesCorePackageVersion>

<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0-preview4-27615-11</MicrosoftExtensionsDependencyModelPackageVersion>
<MicrosoftExtensionsFileSystemGlobbingPackageVersion>1.1.1</MicrosoftExtensionsFileSystemGlobbingPackageVersion>

<!-- Looks like source build workflow changes the version used during the build but we're shipping older version, this lead to failure on "centos" -->
<!-- We have to keep the version aligned with the SDK version specified src\vstest.console\vstest.console.csproj <TargetFrameworks Condition=" '$(DotNetBuildFromSource)' == 'true' ">xxxx;</TargetFrameworks> -->
<!-- https://github.com/dotnet/installer/pull/15078#issuecomment-1344407280 -->
<MicrosoftExtensionsFileSystemGlobbingPackageVersion Condition=" '$(DotNetBuildFromSource)' == 'true' ">7.0.0</MicrosoftExtensionsFileSystemGlobbingPackageVersion>
<MicrosoftExtensionsFileSystemGlobbingPackageVersion Condition=" '$(DotNetBuildFromSource)' == '' ">1.1.1</MicrosoftExtensionsFileSystemGlobbingPackageVersion>

<CoverletCoverageVersion>1.2.0</CoverletCoverageVersion>
<RoslynPublicApiAnalyzersVersion>3.3.4-beta1.21554.2</RoslynPublicApiAnalyzersVersion>
Expand Down

0 comments on commit 0e7f432

Please sign in to comment.