4

我使用 MVC 3 Web 应用程序创建了一个游戏应用程序,就像这样

在此处输入图像描述

控制器/动作就像 \Home\Game

我想知道是否可以将此 MVC 应用程序转换为 EXE 文件,以便任何用户都可以在他的 PC 上运行它。我知道我们可以为 windows 应用程序创建 EXE 文件,Web 应用程序可以吗?

4

1 回答 1

5

不是直接的。

您可以做的是使用 mono xsp 来拥有一个简单的嵌入式网络服务器,您可以将其放入一个 .exe 中,然后它将在端口 xy 上启动一个网络服务器,并使用 with 打开一个网络浏览器

http://localhost:xy/optional-virtual-directory/Home/Game

您还需要将该网络服务器程序集本地复制到您的网络应用程序的 /bin 目录,以便它无需任何安装即可工作。

您还需要本地复制所有必需的 ASP.NET MVC-3 程序集(因为它们很可能默认情况下未安装)。
并且您需要添加 1.0.0 版本,以防有人在本地安装了 MVC-4。

即便如此,它也需要在目标计算机上安装 .NET 框架 4.0(或至少 3.5?)。

这里是最新的 stable-XSP 源的链接:http:
//download.mono-project.com/sources/xsp/xsp-2.10.2.tar.bz2

您可以将压缩后的 Web 应用程序作为嵌入式资源包含在内,并使用解压缩库将其解压缩到可写目录,将其设置为 Web 服务器的根目录。

确保您的解压缩库正确解压缩 JavaScript 文件,因为 microsoft 提供的 windows-server windows-explorer-integrated-zip-handling 实用程序无法正确解压缩它们(可能取决于服务器版本和安全设置/策略)。

static void Main()
{

    int iPort = 8080; // If admin rights it requires, wrong it is ;)
    iPort = 30080; // Damn !  I still no haz no admin rightz !


    string strBasePath = @"D:\UserName\documents\visual studio 2010\Projects\EmbeddableWebServer\TestApplication";

    string strCurrentDirectory = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
    System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(strCurrentDirectory);
    //strBasePath = System.IO.Path.Combine(di.Parent.Parent.Parent.FullName, "TestApplication");
    strBasePath = System.IO.Path.Combine(di.Parent.Parent.Parent.FullName, "TestMvcApplication");

    //EmbeddableWebServer.cWebSource WebSource = new EmbeddableWebServer.cWebSource(System.Net.IPAddress.Any, iPort);
    Mono.WebServer.XSPWebSource ws = new Mono.WebServer.XSPWebSource(System.Net.IPAddress.Any, iPort);

    // EmbeddableWebServer.cServer Server = new EmbeddableWebServer.cServer(WebSource, strBasePath);
    Mono.WebServer.ApplicationServer Server = new Mono.WebServer.ApplicationServer(ws, strBasePath);

    Server.AddApplication("localhost", iPort, "/", strBasePath);
    Server.Start(true);


    System.Diagnostics.Process.Start("\"http://localhost:" + iPort.ToString() + "\"");

    Console.WriteLine(" --- Server up and running. Press any key to quit --- ");
    Console.ReadKey();

    Server.Stop();
} // End Sub Main 

我使用此代码来解决缺少的语言环境处理。

using System;
using System.Collections.Generic;
using System.Text;


namespace System
{


    public class Locale
    {
        // http://msdn.microsoft.com/en-us/library/441722ys(v=vs.80).aspx
        // #pragma warning disable 414, 3021

        public static string GetText(string message)
        {
            return message;
        }


        public static string GetText(string format, params object[] args)
        {
            return string.Format(format, args);
        }


        /*
        public static object GetResource(string name)
        {
            return name;
        }
        */


    } // End Class Locale


} // End Namespace System

2019 年更新:

根据 2019 年底,您可以使用 .NET Core 3.1,这样您就可以构建一个独立的应用程序,用户无需安装 .NET 框架即可运行该应用程序。

要为 x86 和 x64 构建独立的 .NET Core 应用程序:

dotnet restore -r win-x86
dotnet build -r win-x86
dotnet publish -f netcoreapp3.1 -c Release -r win-x86

Kestrel 是一个集成的 Web 服务器,您可以使用它来代替 Mono.XSP。
有了它,您可以在端口 xy(其中 xy 是未使用的端口号)上运行 MVC/.NET-Core Web 应用程序,并在http(s)://localhost:xy

于 2013-10-10T07:04:03.373 回答