-
Notifications
You must be signed in to change notification settings - Fork 41
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
GetLatestWinSDK assumes registry key will point to 32bit node for win10 sdk #96
Comments
@UnityAlex This is a mistake on my end. This needs to be updated for VS2022 I believe. I will look into this shortly. |
Is there a suggested work-around for this? I'm attempting to get a CI machine functioning and I'm stuck on this. FWIW I'm using the VS19 installer to bolt on the win10 sdk module. |
Oh. Now I am confused. For the CI, what are you using to build—VS or |
So to be specific I am running
|
@UnityAlex Oh, then this is definitely a priority. I'm not sure why we are not seeing this in the official CI. @jkoritzinsky or @elinor-fung do you have any thoughts? |
Yeah, I think it shoud be updated to do that. I found a similar issue on developer community where they addressed it by checking WOW6432Node first: |
@UnityAlex I've published a new package - https://www.nuget.org/packages/DNNE/1.0.27. Thanks for reporting this! @elinor-fung Thank you for the help. |
Awesome! Thank you. I really appreciate the quick response & turnaround on this issue. |
Sorry to bother you one last time. Do you know if something special needs to be done for this package to wind up in the |
@UnityAlex Ugh! Sorry. I need to request that get added to our NuGet feed. |
Haha no problem I figured that may be the case. Let me know when I can try again. :-) |
@UnityAlex Should be updated now. |
Firstly I'm not entirely sure if this is a Visual Studio installer issue or DNNE but after running the visual studio installer to add the win10 sdk to the system the
KitsRoot10
registry key is pointing to C:\Program Files\Windows Kits\10\ where the sdk's files appear to actually be in the 32bit node's location of Program Files (x86). As far as I can tell it seems like the win10 sdk always winds up inProgram Files (x86)
so I was curious if it made sense to instead haveGetLatestWinSDK
check theWOW6432Node
for the sdk location to ensure it always pointed to the correct location?The text was updated successfully, but these errors were encountered: