-
Notifications
You must be signed in to change notification settings - Fork 25
Support github actions with Windows 10 SDK and VS 2022 (v143) #50
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
base: master
Are you sure you want to change the base?
Support github actions with Windows 10 SDK and VS 2022 (v143) #50
Conversation
Visual Studio 2022 or later cannot build the current version of UtilsActions project, because of the type errors. Having these UtilsActions.dll binaries is actually beneficial as there is no more need of the UtilsActions project, at the expense of not being able to modify those methods if needed. But the UtilsActions.dll methods are rather fixed in their purpose and should not change for the foreseeable future. If, for any reason, there is the need to change those methods, the project will need to be rewritten. Currently, the rewrite is not needed, thus this addition. ``` std::wstring GenerateRandomPassword(); void GetUserSid(const std::wstring& username, PSID &pSid); std::vector<std::wstring> GetUserRights(const std::wstring& username); void AssignUserRights(const std::wstring& username, const std::vector<std::wstring> rights); ``` Signed-off-by: Adrian Vladu <[email protected]>
Signed-off-by: Adrian Vladu <[email protected]>
This reverts commit 88b1938.
Signed-off-by: Adrian Vladu <[email protected]>
210ffc2 to
a3a7a0f
Compare
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.
Since you're fixing the utils compilation, why do we need to include the DLLs?
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.
The msms were added to keep backwards compatibility in the sense of codebase, but I need to check if they are still required and for what version of VS and SDK. For example, if we want to only support VS 2022 or VS 2017 and 2019 and 2022, I need to verify more.
Signed-off-by: Adrian Vladu <[email protected]>
No description provided.