15 references to CheckWin32ResourceOptions
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (15)
CommandLineTests.vb (15)
1035CheckWin32ResourceOptions({"/win32resource:a"}, "a", Nothing, Nothing, False) 1037CheckWin32ResourceOptions({"/win32icon:b"}, Nothing, "b", Nothing, False) 1039CheckWin32ResourceOptions({"/win32manifest:c"}, Nothing, Nothing, "c", False) 1041CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1067CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1077CheckWin32ResourceOptions({"/win32resource:r", "/win32resource:s"}, "s", Nothing, Nothing, False) 1085CheckWin32ResourceOptions({"/win32resource:r", "/nowin32manifest"}, "r", Nothing, Nothing, True) 1091CheckWin32ResourceOptions({"/win32icon:i", "/win32icon:j"}, Nothing, "j", Nothing, False) 1093CheckWin32ResourceOptions({"/win32icon:i", "/win32manifest:m"}, Nothing, "i", "m", False) 1095CheckWin32ResourceOptions({"/win32icon:i", "/nowin32manifest"}, Nothing, "i", Nothing, True) 1101CheckWin32ResourceOptions({"/win32manifest:m", "/win32icon:i"}, Nothing, "i", "m", False) 1103CheckWin32ResourceOptions({"/win32manifest:m", "/win32manifest:n"}, Nothing, Nothing, "n", False) 1109CheckWin32ResourceOptions({"/nowin32manifest", "/win32resource:r"}, "r", Nothing, Nothing, True) 1111CheckWin32ResourceOptions({"/nowin32manifest", "/win32icon:i"}, Nothing, "i", Nothing, True) 1116CheckWin32ResourceOptions({"/nowin32manifest", "/nowin32manifest"}, Nothing, Nothing, Nothing, True)