You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/installer/tests/Assets/TestProjects/StartupHookWithMultipleIncorrectSignatures/StartupHookWithMultipleIncorrectSignatures.cs
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,10 @@ internal class StartupHook
11
11
// case where there are multiple incorrect Initialize
12
12
// methods. Instead, the startup hook provider code should throw
13
13
// an exception.
14
-
15
-
publicstaticintInitialize()
14
+
15
+
publicvoidInitialize()
16
16
{
17
-
Console.WriteLine("Hello from startup hook returning int!");
18
-
return10;
17
+
Console.WriteLine("Hello from startup hook with instance method!");
0 commit comments