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

[win] Add Hot Restart define constant in a target instead of an evaluation property #17470

Merged
merged 1 commit into from
Feb 8, 2023

Conversation

mauroa
Copy link
Contributor

@mauroa mauroa commented Feb 7, 2023

…ation property

This is needed in order to read the correct value of the "IsHotRestartBuild" property set by the VS extension. Doing it in a PropertyGroup at evaluation was not getting the correct value since it was not being set as an MSBuild global property

This PR is related to this other one in the XVS extension: https://github.com/xamarin/XamarinVS/pull/13612

…ation property

This is needed in order to read the correct value of the "IsHotRestartBuild" property set by the VS extension.
Doing it in a PropertyGroup at evaluation was not getting the correct value since it was not being set as an MSBuild global property
@mauroa mauroa requested a review from dalexsoto February 7, 2023 18:45
@mauroa mauroa added the not-notes-worthy Ignore for release notes label Feb 7, 2023
@mauroa mauroa self-assigned this Feb 7, 2023
@mauroa
Copy link
Contributor Author

mauroa commented Feb 7, 2023

/sudo backport release/7.0.1xx-xcode14.2

@mauroa
Copy link
Contributor Author

mauroa commented Feb 7, 2023

/sudo backport release/6.0.4xx-xcode14.2

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Backport Job to branch release/7.0.1xx-xcode14.2 Created! The magic is happening here

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Backport Job to branch release/6.0.4xx-xcode14.2 Created! The magic is happening here

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Hooray! Backport succeeded! Please see https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=7297408 for more details.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Hooray! Backport succeeded! Please see https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=7297412 for more details.

@mauroa
Copy link
Contributor Author

mauroa commented Feb 7, 2023

/sudo backport xcode14.2

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Backport Job to branch xcode14.2 Created! The magic is happening here

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Hooray! Backport succeeded! Please see https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=7297447 for more details.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

✅ API diff for current PR / commit

Legacy Xamarin (No breaking changes)
  • iOS (no change detected)
  • tvOS (no change detected)
  • watchOS (no change detected)
  • macOS (no change detected)
NET (empty diffs)
  • iOS: (empty diff detected)
  • tvOS: (empty diff detected)
  • MacCatalyst: (empty diff detected)
  • macOS: (empty diff detected)

✅ API diff vs stable

Legacy Xamarin (No breaking changes)
.NET (No breaking changes)
Legacy Xamarin (stable) vs .NET

✅ Generator diff

Generator diff is empty

Pipeline on Agent
Hash: 52b1747af9cea791572a2b393278106d87020759 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

💻 [PR Build] Tests on macOS M1 - Mac Big Sur (11.5) passed 💻

All tests on macOS M1 - Mac Big Sur (11.5) passed.

Pipeline on Agent
Hash: 52b1747af9cea791572a2b393278106d87020759 [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

📚 [PR Build] Artifacts 📚

Packages generated

View packages

Pipeline on Agent XAMBOT-1044.Monterey'
Hash: 52b1747af9cea791572a2b393278106d87020759 [PR build]

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🔥 [CI Build] Test results 🔥

Test results

❌ Tests failed on VSTS: simulator tests

0 tests crashed, 3 tests failed, 222 tests passed.

Failures

❌ xammac tests [attempt 2]

3 tests failed, 0 tests passed.
  • xammac tests/Mac Modern/Debug: Failed (Test run failed.
    Tests run: 2833 Passed: 2698 Inconclusive: 11 Failed: 2 Ignored: 133)
  • xammac tests/Mac Modern/Release: Failed (Test run failed.
    Tests run: 2830 Passed: 2694 Inconclusive: 11 Failed: 2 Ignored: 134)
  • xammac tests/Mac Modern/Release (all optimizations): Failed (Test run failed.
    Tests run: 2830 Passed: 2697 Inconclusive: 11 Failed: 2 Ignored: 131)

Html Report (VSDrops) Download

Successes

✅ bcl: All 69 tests passed. Html Report (VSDrops) Download
✅ cecil: All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests: All 1 tests passed. Html Report (VSDrops) Download
✅ fsharp: All 7 tests passed. Html Report (VSDrops) Download
✅ framework: All 8 tests passed. Html Report (VSDrops) Download
✅ generator: All 2 tests passed. Html Report (VSDrops) Download
✅ interdependent_binding_projects: All 7 tests passed. Html Report (VSDrops) Download
✅ install_source: All 1 tests passed. Html Report (VSDrops) Download
✅ introspection: All 8 tests passed. Html Report (VSDrops) Download
✅ linker: All 65 tests passed. Html Report (VSDrops) Download
✅ mac_binding_project: All 1 tests passed. Html Report (VSDrops) Download
✅ mmp: All 2 tests passed. Html Report (VSDrops) Download
✅ mononative: All 12 tests passed. Html Report (VSDrops) Download
✅ monotouch: All 25 tests passed. Html Report (VSDrops) Download
✅ msbuild: All 2 tests passed. Html Report (VSDrops) Download
✅ mtouch: All 1 tests passed. Html Report (VSDrops) Download
✅ xcframework: All 8 tests passed. Html Report (VSDrops) Download
✅ xtro: All 2 tests passed. Html Report (VSDrops) Download

Pipeline on Agent
Hash: 52b1747af9cea791572a2b393278106d87020759 [PR build]

rolfbjarne pushed a commit that referenced this pull request Feb 8, 2023
… of an evaluation property (#17473)

This is needed in order to read the correct value of the "IsHotRestartBuild" property set by the VS extension. Doing it in a PropertyGroup at evaluation was not getting the correct value since it was not being set as an MSBuild global property

This PR is related to this other one in the XVS extension: xamarin/XamarinVS#13612

Backport of #17470

Co-authored-by: Mauro Agnoletti <mauro.agnoletti@gmail.com>
rolfbjarne pushed a commit that referenced this pull request Feb 8, 2023
…a target instead of an evaluation property. (#17472)

This is needed in order to read the correct value of the "IsHotRestartBuild" property set by the VS extension. Doing it in a PropertyGroup at evaluation was not getting the correct value since it was not being set as an MSBuild global property

This PR is related to this other one in the XVS extension: xamarin/XamarinVS#13612


Backport of #17470

Co-authored-by: Mauro Agnoletti <mauro.agnoletti@gmail.com>
@rolfbjarne
Copy link
Member

Test failures are unrelated (https://github.com/xamarin/maccore/issues/2630).

@rolfbjarne rolfbjarne changed the title [win] Add Hot Restart define constant in a target instead of an evalu… [win] Add Hot Restart define constant in a target instead of an evaluation property Feb 8, 2023
@rolfbjarne rolfbjarne merged commit 8b0763b into main Feb 8, 2023
rolfbjarne pushed a commit that referenced this pull request Feb 8, 2023
…a target instead of an evaluation property. (#17471)

This is needed in order to read the correct value of the "IsHotRestartBuild" property set by the VS extension. Doing it in a PropertyGroup at evaluation was not getting the correct value since it was not being set as an MSBuild global property

This PR is related to this other one in the XVS extension: xamarin/XamarinVS#13612


Backport of #17470

Co-authored-by: Mauro Agnoletti <mauro.agnoletti@gmail.com>
@AlleSchonWeg
Copy link

@mauroa
Will this PR also fix this issue?
#16148
Thx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
not-notes-worthy Ignore for release notes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants