mscoree/tests: Build loadpaths.exe as GUI instead of CUI.

This prevents unnecessary console windows from being created for
it if mscoree_test.exe does not have a console.

Signed-off-by: Esme Povirk <esme@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Esme Povirk 2022-04-04 14:26:42 -05:00 committed by Alexandre Julliard
parent a90d976bb4
commit d971600cae
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ static void test_loadpaths(BOOL neutral)
ret = write_resource(exe_source, exe_source);
ok(ret, "Could not write resource: %lu\n", GetLastError());
DeleteFileW(exe_name);
ret = compile_cs(exe_source, exe_name, L"exe", L"/reference:libloadpaths.dll");
ret = compile_cs(exe_source, exe_name, L"winexe", L"/reference:libloadpaths.dll");
if (!ret) return;
ret = DeleteFileW(exe_source);
ok(ret, "DeleteFileW failed: %lu\n", GetLastError());