csc を使用して C# プログラムをスタンドアロンの .exe にコンパイルしようとしていますが、そのプロジェクトのリソースから 2 つの .exe を含めることができません。最終的なstandalone.exeでそれらが必要です。csc は、それらがテキスト ファイルではなくバイナリであることを教えてくれます (当たり前のことです)。どんな助けでも大歓迎です!:3
編集: /resource: を使用して、これに絞り込みました:
また、重要な場合:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
bool is64bit = !string.IsNullOrEmpty(
Environment.GetEnvironmentVariable("PROCESSOR_ARCHITEW6432"));
if (is64bit == true)
{
ProcessStartInfo startInfo = new ProcessStartInfo("devcon64.exe");
startInfo.Arguments = "restart =display *";
Process.Start(startInfo);
}
else
{
ProcessStartInfo startInfo = new ProcessStartInfo("devcon32.exe");
startInfo.Arguments = "restart =display *";
Process.Start(startInfo);
}
}
}
}