2

我第一次尝试影子复制。我有以下代码:

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {

        var sApplicationDirectory = Application.StartupPath;
        var sAppName = "propane";

        AppDomainSetup oSetup = new AppDomainSetup();
        string sApplicationFile = null;

        // Use this to ensure that if the application is running when the user performs the update, that we don't run into file locking issues.
        oSetup.ShadowCopyFiles = "true";
        oSetup.ApplicationName = "MyApplication";

        // Generate the name of the DLL we are going to launch
        sApplicationFile = System.IO.Path.Combine(sApplicationDirectory, sAppName + ".exe");

        oSetup.ApplicationBase = sApplicationDirectory;
        oSetup.ConfigurationFile = sApplicationFile + ".config";
        oSetup.LoaderOptimization = LoaderOptimization.MultiDomain;

        // Launch the application
        AppDomain oAppDomain = AppDomain.CreateDomain(sAppName, AppDomain.CurrentDomain.Evidence, oSetup);
        oAppDomain.SetData("App", sAppName);
        oAppDomain.ExecuteAssembly(sApplicationFile);

        // When the launched application closes, close this application as well
        Application.Exit();

        //Application.EnableVisualStyles();
        //Application.SetCompatibleTextRenderingDefault(false);
        //Application.Run(new Form1());
    }
}

可执行文件可以很好地到达临时目录并且它正在运行,直到我到达引用的 dll。我在整个项目中引用的 14-16 dll 没有被复制到这个临时目录,导致应用程序崩溃。

我错过了什么?如何让它们全部复制到临时目录?

4

1 回答 1

1

我们的应用程序中的代码几乎相同,并且运行良好。

唯一不同的是我们的 main 方法也用

[LoaderOptimization(LoaderOptimization.MultiDomain)]

您可以尝试一下,看看它是否有所作为。

于 2011-12-14T20:54:12.193 回答