将 C# 程序和其他内容合并到 1 个程序中

发布于 2024-11-18 12:21:30 字数 176 浏览 3 评论 0原文

我有我的 C# 程序所需的图片、GIF、文本文件、控制台应用程序。它们都与我的 c# 程序位于同一目录中。

如果他们下载了我的程序,它应该在一个包中,一个 exe 文件,所有图片都在那里,所有依赖项,控制台应用程序,bat 文件。

如何将所有内容合并到一个包中?这样用户就不会看到所有文本文件、gif 等?

I have pictures, gifs, textfiles, console applications needed by my c# program. They are all in the same directory with my c# program.

If they downloaded my program, it should be in a single package, a single exe file, all the pics are there, all the dependencies, console apps, bat files.

How can I combine everything in one package? So that users will not see all textfiles, gifs, etc.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不离久伴 2024-11-25 12:21:30

您需要将它们设为嵌入式资源。当在解决方案资源管理器中选择资源时,您可以在“属性”窗口中进行设置。

You need to make them Embedded Resources. you can set that in the Property window when the resources are selected in the Solution Explorer.

做个少女永远怀春 2024-11-25 12:21:30

您需要使用资源在程序集中嵌入图像等。请查看此链接

You need to use resources to embed images etc in the assembly. Have a look at this link.

小姐丶请自重 2024-11-25 12:21:30

您应该使用 Visual Studio 部署向导来创建一个安装项目,该项目将包含所有文件,并将在安装过程中执行您的 exe,并且当您构建应用程序时,将只有一个文件“exe 或 msi”。为此转到“项目”->“设置和部署”->“设置项目”,然后创建一个项目。您可以在线搜索,或者 msdn 也提供了非常好的示例。

谢谢

You should use the visual studio deployment wizard to make a setup project that will include all the files and will execute your exe while the installation is in progress and when you build your application there will be only one file "exe or msi".For this Go to Projects->setup and Deployment->Setup project and then create one.You can search online or msdn provides very good samples for that as well.

Thanks

甜心小果奶 2024-11-25 12:21:30

如前所述,您需要将内容作为资源添加到您的应用程序中。如果您使用的是 Visual Studio,只需右键单击您的项目并选择“添加新项目...”,

然后在列表中选择“资源文件”(文件应类似于 Resources.resx)

然后在解决方案资源管理器中,只需打开资源文件并向其中添加您的内容即可。

要在代码中访问它,只需转到

Bitmap image = Resources.myImage;

string textData = Resources.myTextData;

As mentioned, you need to add the content as Resources to your application. If you're using Visual Studio, just right-click your project and select "Add new Item..."

Then in the list, select "Resource File" (file should be something like Resources.resx)

Then in your Solution Explorer, just open the resource file and add your content to it.

To access it in code, just go

Bitmap image = Resources.myImage;

or

string textData = Resources.myTextData;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文