-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Bump: Sentry .NET 3.33.1 #139
Conversation
lucas-zimerman
commented
Jun 16, 2023
•
edited
Loading
edited
- Bump SDK To version 3.33.1
- Remove old dependency to Windows Virtual Machine from 2019.
- Bump sample target versions to build on the latest version of Visual Studio
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: microsoft/setup-msbuild@v1.1 | ||
if: startsWith(matrix.os, 'windows') | ||
- name: Install Windows SDK Version 10.0.16299.0 | ||
uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we stay on windows-2019 and avoid running this instead?
If not, once you review what this action does, can we ping the commit sha here instead of @v1.11
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
windows-2019 doesn't support the latest Android targets.
I checked the action and it's just a single powershell script that does the following:
download https://download.microsoft.com/download/F/8/E/F8EC2F14-375D-4C2E-9C2D-51CA8F7F590B/16299.15.170928-1534.rs3_release_WindowsSDK.iso
mount iso
run WinSDKSetup.exe
Start-Process with the following args "/features OptionId.UWPCpp /q"
where $WindowsSDKOptions is @("OptionId.UWPCpp")
Since it's a single file, it may make more sense to just leave the script inside of the project? This way other contributors could also make use of it if needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah feel free to copy the steps in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please pin the GH action on a follow up PR