Skip to content
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

[release/8.0] Remove constraint from templates for 8.0.1 #4181

Merged
merged 2 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- This repo version -->
<MajorVersion>8</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>
<VersionPrefix>8.0.0</VersionPrefix>
<PatchVersion>1</PatchVersion>
<VersionPrefix>8.0.1</VersionPrefix>
<PreReleaseVersionLabel>preview.8</PreReleaseVersionLabel>
<UseVSTestRunner>true</UseVSTestRunner>
<!-- Enable to remove prerelease label. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@
"guids": [
"98048C9C-BF28-46BA-A98E-63767EE5E3A8"
],
"constraints": {
"aspire": {
"type": "workload",
"args": [ "aspire" ]
}
},
"symbols": {
"Framework": {
"type": "parameter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,6 @@
]
}
],
"constraints": {
"aspire": {
"type": "workload",
"args": [ "aspire" ]
}
},
"symbols": {
"Framework": {
"type": "parameter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@
"identity": "Aspire.ServiceDefaults.CSharp.8.0",
"thirdPartyNotices": "https://aka.ms/dotnet/aspire/8.0-third-party-notices",
"groupIdentity": "Aspire.ServiceDefaults",
"constraints": {
"aspire": {
"type": "workload",
"args": [ "aspire" ]
}
},
"symbols": {
"Framework": {
"type": "parameter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,6 @@
]
}
],
"constraints": {
"aspire": {
"type": "workload",
"args": [ "aspire" ]
}
},
"symbols": {
"Framework": {
"type": "parameter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
"identity": "Aspire.Tests.CSharp.8.0",
"thirdPartyNotices": "https://aka.ms/dotnet/aspire/8.0-third-party-notices",
"groupIdentity": "Aspire.Tests",
"constraints": {
"aspire": {
"type": "workload",
"args": [ "aspire" ]
}
},
"symbols": {
"Framework": {
"type": "parameter",
Expand Down
2 changes: 1 addition & 1 deletion tests/testproject/Directory.Packages.Helix.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion>
<_PackageVersion>$(PackageVersion)</_PackageVersion>
<!-- If package versions are being stabilized, the version used shouldn't have the prerelease tag in it. -->
<_PackageVersion Condition="'$(StabilizePackageVersion)' == 'true'">8.0.0</_PackageVersion>
<_PackageVersion Condition="'$(StabilizePackageVersion)' == 'true'">8.0.1</_PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down