Skip to content

Commit bd51a6c

Browse files
committed
Fix condition
1 parent 964222e commit bd51a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/com.unity.ide.visualstudio/Editor/VisualStudioIntegration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private static void RunOnceOnUpdate(Action action)
106106
private static void RunOnShutdown(Action action)
107107
{
108108
// Mono on OSX has all kinds of quirks on AppDomain shutdown
109-
#if !UNITY_EDITOR_WIN
109+
#if UNITY_EDITOR_WIN
110110
AppDomain.CurrentDomain.DomainUnload += (_, __) => action();
111111
#endif
112112
}

0 commit comments

Comments
 (0)