-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Fix Visual studio release build #3761
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
Fix Visual studio release build #3761
Conversation
Thanks RosarioPulella for opening a Pull Request! The reviewers will test the PR and highlight if there is any conflict or changes required. If the PR is approved we will proceed to merge the pull request 🙌 |
@@ -67,28 +65,13 @@ private void ClearLogsButton_Click(object sender, RoutedEventArgs e) | |||
_logs.Clear(); | |||
} | |||
|
|||
private async void EffectElementHost_EnteredViewport(object sender, EventArgs e) | |||
{ | |||
AddLog("Entered viewport"); |
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.
This log thing shows up in the example, reason this was removed?
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.
It it was not doing anything other than logging, and the compiler was complaining about the function being async
with no await
. I can just bring it back for now and remove the async
. Then when the animation gets reintroduced it would be simpler.
I was trying to get it building again for now. |
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.
Looks good to me.
@RosarioPulella what build configuration are you trying? For
I was able to build for x64 though. 🙂 |
@michael-hawker Is Any CPU supposed to work in release anyway? I though it would compile into platform dependent binaries, so Any CPU wouldn't work in there right? Any CPU also isn't an option when creating a blank UWP project so I was surprised that was even an option in VS. |
@chingucoding we have an It's most likely a missing checkbox in the build configuration dialog of something that's not checked to build. |
Ah I see, thanks for the explanation @michael-hawker! |
Yeah I was not trying to fix building |
Let's merge this now, and we'll see if I encounter an issue when packaging the app and can forward-fix there. Thanks @RosarioPulella! |
Fixes local release build
Building on release mode locally does not work. This fixes it.
PR Type
What kind of change does this PR introduce?
What is the current behavior?
What is the new behavior?
PR Checklist
Please check if your PR fulfills the following requirements:
WARNING
This removes a
TODO
maybe we want to reintroduce the functionally before merging?