Skip to content

Commit

Permalink
Update Aspire Workload SDK Band to 8.0.100
Browse files Browse the repository at this point in the history
  • Loading branch information
joperezr committed Oct 25, 2023
1 parent 092d15a commit c6e32c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>
<PropertyGroup>
<!-- Package versions defined directly in <reporoot>/Directory.Packages.props -->
<MicrosoftDotnetSdkInternalPackageVersion>8.0.100-rc.1.23422.1</MicrosoftDotnetSdkInternalPackageVersion>
<MicrosoftDotnetSdkInternalPackageVersion>8.0.100-rtm.23512.16</MicrosoftDotnetSdkInternalPackageVersion>
<MicrosoftDeveloperControlPlanedarwinamd64PackageVersion>0.1.40-rc.0</MicrosoftDeveloperControlPlanedarwinamd64PackageVersion>
<MicrosoftDeveloperControlPlanedarwinarm64PackageVersion>0.1.40-rc.0</MicrosoftDeveloperControlPlanedarwinarm64PackageVersion>
<MicrosoftDeveloperControlPlanelinuxamd64PackageVersion>0.1.40-rc.0</MicrosoftDeveloperControlPlanelinuxamd64PackageVersion>
Expand Down
5 changes: 4 additions & 1 deletion src/Shared/Workload.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
<DotNetDirectory>$(DotNetOutputPath)dotnet/</DotNetDirectory>
<DotNetPacksDirectory>$(DotNetDirectory)packs/</DotNetPacksDirectory>
<VersionBand Condition=" '$(VersionBand)' == '' ">$([System.Text.RegularExpressions.Regex]::Match($(MicrosoftDotnetSdkInternalPackageVersion), `^\d+\.\d+\.\d`))00</VersionBand>
<DotNetVersionBand Condition=" '$(DotNetPreviewVersionBand)' == '' ">$(VersionBand)$([System.Text.RegularExpressions.Regex]::Match($(MicrosoftDotnetSdkInternalPackageVersion), `\-(preview|rc|alpha).\d+`))</DotNetVersionBand>
<!-- When we are ready to produce Workloads targeting the stable SDK band, set UseStableSdkBand to true. Otherwise, it will match the SDK preview band. -->
<UseStableSdkBand>true</UseStableSdkBand>
<DotNetVersionBand Condition=" '$(UseStableSdkBand)' != 'true' ">$(VersionBand)$([System.Text.RegularExpressions.Regex]::Match($(MicrosoftDotnetSdkInternalPackageVersion), `\-(preview|rc|alpha|rtm).\d+`))</DotNetVersionBand>
<DotNetVersionBand Condition="'$(UseStableSdkBand)' == 'true'">$(VersionBand)</DotNetVersionBand>
<DotNetSdkManifestsFolder>$(DotNetVersionBand)</DotNetSdkManifestsFolder>
<DotNetAspireManifestVersionBand>$(DotNetVersionBand)</DotNetAspireManifestVersionBand>
<_AspireDotNetVersionMajor>8</_AspireDotNetVersionMajor>
Expand Down

0 comments on commit c6e32c2

Please sign in to comment.