找不到c#clickOnce xml文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了找不到c#clickOnce xml文件相关的知识,希望对你有一定的参考价值。
C#部署clicOnce。安装程序运行xml文件未找到?
XDocument x = XDocument.Load(@"veri.xml");
image1:http://www.kgmmp.org/333.jpg
答案
如果它是项目中的文件,请检查它是否是文件属性中的本地副本。文件必须是本地副本。然后你可以尝试以下。
XDocument x = XDocument.Load(@"veri.xml");
string filePath = Path.Combine(
HostingEnvironment.ApplicationPhysicalPath,
@"App_DataAppSettings.xml"
);
以上是关于找不到c#clickOnce xml文件的主要内容,如果未能解决你的问题,请参考以下文章
使用 MSBuild 从 Visual Studio 2013 命令行发布 Clickonce 找不到 SignTool.exe