1

Windows 10を使用しています。

MinGW を使用して c# 内で c++ ファイルをコンパイルしようとしています (MinGW フォルダーはプロジェクト ディレクトリにあります) が、(windres を使用して) リソース スクリプトをコンパイルしません。

cmd で windres を使用すると、「C:/Users/username/AppData/Local/Temp/my.rc:1: unrecognized escape sequence」と表示されます。それでも動作します。しかし、(プロセスを作成して) C# でまったく同じコマンドを実行すると、まったく機能せず、「ファイル名、ディレクトリ名、またはボリューム ラベルの構文が正しくありません」と表示されます。

私のコード:

String tempDir = Path.GetTempPath();
String file = tempDir + "my.rc";

using (StreamWriter writer = new StreamWriter(file, false, Encoding.ASCII))
{
     if (!textIcon.Text.Equals(""))
         await writer.WriteLineAsync("25 ICON \"" + textIcon.Text + "\"");
     if (checkAdmin.Checked)
     {
         String manifest = tempDir + @"\manifest.xml";
         createManifest(manifest);
         await writer.WriteLineAsync("55 24 \"" + manifest + "\"");
     }
}

String args2 = "/c \"" + Path.Combine(gccLocation, "windres.exe") + "\" -o \"" + Path.Combine(tempDir, "my.o").Replace("\\", "/") + "\" \"" + file.Replace("\\", "/") + "\"";

//Debug
//args2 = "/k echo " + args2;

ProcessStartInfo psi2 = new ProcessStartInfo();
psi2.FileName = "CMD.exe";
psi2.Arguments = args2;
psi2.UseShellExecute = false;
psi2.CreateNoWindow = true;

//Debug
//psi2.CreateNoWindow = false;

Process windres = Process.Start(psi2);
windres.WaitForExit();

if(windres.ExitCode != 0)
{
    MessageBox.Show("Error: Could not create resource file (" + windres.ExitCode + ")");
}
4

1 に答える 1