15 references to CheckWin32ResourceOptions
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (15)
CommandLineTests.vb (15)
1034CheckWin32ResourceOptions({"/win32resource:a"}, "a", Nothing, Nothing, False) 1036CheckWin32ResourceOptions({"/win32icon:b"}, Nothing, "b", Nothing, False) 1038CheckWin32ResourceOptions({"/win32manifest:c"}, Nothing, Nothing, "c", False) 1040CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1066CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1076CheckWin32ResourceOptions({"/win32resource:r", "/win32resource:s"}, "s", Nothing, Nothing, False) 1084CheckWin32ResourceOptions({"/win32resource:r", "/nowin32manifest"}, "r", Nothing, Nothing, True) 1090CheckWin32ResourceOptions({"/win32icon:i", "/win32icon:j"}, Nothing, "j", Nothing, False) 1092CheckWin32ResourceOptions({"/win32icon:i", "/win32manifest:m"}, Nothing, "i", "m", False) 1094CheckWin32ResourceOptions({"/win32icon:i", "/nowin32manifest"}, Nothing, "i", Nothing, True) 1100CheckWin32ResourceOptions({"/win32manifest:m", "/win32icon:i"}, Nothing, "i", "m", False) 1102CheckWin32ResourceOptions({"/win32manifest:m", "/win32manifest:n"}, Nothing, Nothing, "n", False) 1108CheckWin32ResourceOptions({"/nowin32manifest", "/win32resource:r"}, "r", Nothing, Nothing, True) 1110CheckWin32ResourceOptions({"/nowin32manifest", "/win32icon:i"}, Nothing, "i", Nothing, True) 1115CheckWin32ResourceOptions({"/nowin32manifest", "/nowin32manifest"}, Nothing, Nothing, Nothing, True)