Skip to content

Commit

Permalink
Merge pull request #309 from unoplatform/mergify/bp/release/stable/1.…
Browse files Browse the repository at this point in the history
…27/pr-308

fix: Don't request a specific Xcode version (backport #308)
  • Loading branch information
jeromelaban authored Nov 15, 2024
2 parents 944744e + 5d1a935 commit a4ee6f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions UnoCheck/Manifest/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ namespace DotNetCheck.Manifest
{
public partial class Manifest
{
public const string DefaultManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5af018284e66a84239ac881827f02a97e00344e9/manifests/uno.ui.manifest.json";
public const string PreviewManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5af018284e66a84239ac881827f02a97e00344e9/manifests/uno.ui-preview.manifest.json";
public const string PreviewMajorManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/5af018284e66a84239ac881827f02a97e00344e9/manifests/uno.ui-preview-major.manifest.json";
public const string DefaultManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/e9eba7efb5cd8face4e0af6afb899e8dae094751/manifests/uno.ui.manifest.json";
public const string PreviewManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/e9eba7efb5cd8face4e0af6afb899e8dae094751/manifests/uno.ui-preview.manifest.json";
public const string PreviewMajorManifestUrl = "https://raw.githubusercontent.com/unoplatform/uno.check/e9eba7efb5cd8face4e0af6afb899e8dae094751/manifests/uno.ui-preview-major.manifest.json";

public static Task<Manifest> FromFileOrUrl(string fileOrUrl)
{
Expand Down
3 changes: 1 addition & 2 deletions manifests/uno.ui-preview-major.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
}
},
"xcode": {
"exactVersion": "16.0",
"exactVersionName": "15F31d"
"exactVersion": "16.0"
},
"vswin": {
"minimumVersion": "17.12"
Expand Down
3 changes: 1 addition & 2 deletions manifests/uno.ui-preview.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
}
},
"xcode": {
"exactVersion": "16.0",
"exactVersionName": "15F31d"
"exactVersion": "16.0"
},
"vswin": {
"minimumVersion": "17.12"
Expand Down
3 changes: 1 addition & 2 deletions manifests/uno.ui.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
}
},
"xcode": {
"exactVersion": "16.0",
"exactVersionName": "15F31d"
"exactVersion": "16.0"
},
"vswin": {
"minimumVersion": "17.12"
Expand Down

0 comments on commit a4ee6f3

Please sign in to comment.