C# Visual Studio 2010 Ultimate 在 ClickOnce 部署中包含 html 文件

发布于 2024-11-06 05:52:25 字数 180 浏览 0 评论 0原文

我有一个在 VS 2010 Ultimate 中创建的 C# 程序。我添加了 .html 文件用作帮助文件。帮助文件位于与项目文件相同的目录中。有谁知道使用 ClickOnce 部署后当前目录的路径是什么?我尝试过的一切都不起作用。我还将 .html 文件放在与项目文件相同的目录中,但这也不起作用。 (我已在项目属性中添加了 .html 文件)

I have a C# program created in VS 2010 ultimate. I have added .html files to be used as help files. The help files are in a directory in the same directory as the project file. Does anyone know what the path would be from current directory after deployment with ClickOnce? Nothing I have tried has worked. I have also put the .html files in the same directory as project file but that doesn't work either. (I have added the .html files in project properties)

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

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

发布评论

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

评论(3

我还不会笑 2024-11-13 05:52:25

在解决方案资源管理器中,右键单击 x.html 文件并选择 Properties。在属性中,将复制到输出目录设置为始终复制

在您的代码中使用以下代码引用您的 x.html 文件:

var directoryPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
var filePath = Path.Combine(directoryPath, "x.html");

In the Solution Explorer, right click on your x.html file and select Properties. In the properties set Copy to Output Directory setting to Copy always.

In your code reference your x.html file using this code:

var directoryPath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
var filePath = Path.Combine(directoryPath, "x.html");
就此别过 2024-11-13 05:52:25

您是否尝试过将 .HTML 文件添加到您的项目本身?然后,在项目内部将“复制到输出目录”设置为True

Have you tried adding the .HTML files to your project itself? Then, inside the project set 'Copy To Output Directory' to True?

深海夜未眠 2024-11-13 05:52:25

转到文件的属性并确保复制到输出true。然后,您应该能够像这样访问它们:

string path = string.Format(@"{0}\{1}", Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"Path\To\The\File.txt");

Go to the properties of the files and make sure Copy to Output is true. And then, you should be able to access them like this:

string path = string.Format(@"{0}\{1}", Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"Path\To\The\File.txt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文