32 references to CheckWin32ResourceOptions
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (32)
CommandLineTests.vb (32)
1033CheckWin32ResourceOptions({"/win32resource:a"}, "a", Nothing, Nothing, False) 1035CheckWin32ResourceOptions({"/win32icon:b"}, Nothing, "b", Nothing, False) 1037CheckWin32ResourceOptions({"/win32manifest:c"}, Nothing, Nothing, "c", False) 1039CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1044CheckWin32ResourceOptions({"/win32resource"}, Nothing, Nothing, Nothing, False, 1046CheckWin32ResourceOptions({"/win32resource:"}, Nothing, Nothing, Nothing, False, 1048CheckWin32ResourceOptions({"/win32resource: "}, Nothing, Nothing, Nothing, False, 1051CheckWin32ResourceOptions({"/win32icon"}, Nothing, Nothing, Nothing, False, 1053CheckWin32ResourceOptions({"/win32icon:"}, Nothing, Nothing, Nothing, False, 1055CheckWin32ResourceOptions({"/win32icon: "}, Nothing, Nothing, Nothing, False, 1058CheckWin32ResourceOptions({"/win32manifest"}, Nothing, Nothing, Nothing, False, 1060CheckWin32ResourceOptions({"/win32manifest:"}, Nothing, Nothing, Nothing, False, 1062CheckWin32ResourceOptions({"/win32manifest: "}, Nothing, Nothing, Nothing, False, 1065CheckWin32ResourceOptions({"/nowin32manifest"}, Nothing, Nothing, Nothing, True) 1066CheckWin32ResourceOptions({"/nowin32manifest:"}, Nothing, Nothing, Nothing, False, 1068CheckWin32ResourceOptions({"/nowin32manifest: "}, Nothing, Nothing, Nothing, False, 1075CheckWin32ResourceOptions({"/win32resource:r", "/win32resource:s"}, "s", Nothing, Nothing, False) 1077CheckWin32ResourceOptions({"/win32resource:r", "/win32icon:i"}, "r", "i", Nothing, False, 1080CheckWin32ResourceOptions({"/win32resource:r", "/win32manifest:m"}, "r", Nothing, "m", False, 1083CheckWin32ResourceOptions({"/win32resource:r", "/nowin32manifest"}, "r", Nothing, Nothing, True) 1086CheckWin32ResourceOptions({"/win32icon:i", "/win32resource:r"}, "r", "i", Nothing, False, 1089CheckWin32ResourceOptions({"/win32icon:i", "/win32icon:j"}, Nothing, "j", Nothing, False) 1091CheckWin32ResourceOptions({"/win32icon:i", "/win32manifest:m"}, Nothing, "i", "m", False) 1093CheckWin32ResourceOptions({"/win32icon:i", "/nowin32manifest"}, Nothing, "i", Nothing, True) 1096CheckWin32ResourceOptions({"/win32manifest:m", "/win32resource:r"}, "r", Nothing, "m", False, 1099CheckWin32ResourceOptions({"/win32manifest:m", "/win32icon:i"}, Nothing, "i", "m", False) 1101CheckWin32ResourceOptions({"/win32manifest:m", "/win32manifest:n"}, Nothing, Nothing, "n", False) 1103CheckWin32ResourceOptions({"/win32manifest:m", "/nowin32manifest"}, Nothing, Nothing, "m", True, 1107CheckWin32ResourceOptions({"/nowin32manifest", "/win32resource:r"}, "r", Nothing, Nothing, True) 1109CheckWin32ResourceOptions({"/nowin32manifest", "/win32icon:i"}, Nothing, "i", Nothing, True) 1111CheckWin32ResourceOptions({"/nowin32manifest", "/win32manifest:m"}, Nothing, Nothing, "m", True, 1114CheckWin32ResourceOptions({"/nowin32manifest", "/nowin32manifest"}, Nothing, Nothing, Nothing, True)