将 C# 程序和其他内容合并到 1 个程序中
我有我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要将它们设为嵌入式资源。当在解决方案资源管理器中选择资源时,您可以在“属性”窗口中进行设置。
You need to make them Embedded Resources. you can set that in the Property window when the resources are selected in the Solution Explorer.
您需要使用
资源
在程序集中嵌入图像等
。请查看此链接。You need to use
resources
to embedimages etc
in the assembly. Have a look at this link.您应该使用 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
如前所述,您需要将内容作为资源添加到您的应用程序中。如果您使用的是 Visual Studio,只需右键单击您的项目并选择“添加新项目...”,
然后在列表中选择“资源文件”(文件应类似于 Resources.resx)
然后在解决方案资源管理器中,只需打开资源文件并向其中添加您的内容即可。
要在代码中访问它,只需转到
或
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
or