这个问题与我之前的问题有关。
我需要在VS 2010(.NET 4.0)上将由C#构建的应用程序发布到Windows Server 2008 R2。
我只是按照说明("发布到文件共享或路径"):
https://msdn.microsoft.com/en-us/library/31kztyey.aspx
现在,可以访问发布配置文件中指定的UNC路径。它是远程服务器的位置。
但是,在浏览器中,我可以打开链接:
\\serverName\e$\myPath\publish.htm
网页上有一个安装按钮,它指向
文件://serverName/e$/myPath/setup.exe
当我点击它时,它将setup.exe下载到
C:\Users\myname\Downloads
当我跑步时,我得到了:
* Activation of C:\Users\myName\Downloads\myApp.Host.application resulted in exception. Following failure messages were detected:
+ Downloading file:///C:/Users/myName/Downloads/myApp.Host.application did not succeed.
+ Could not find file 'C:\Users\myName\Downloads\myApp.Host.application'.
System.Net.WebException
- Could not find file 'C:\Users\myName\Downloads\CWIL.Host.application'.
但是,
myApp.Host.application
已创建于:
\\serverName\e$\myPath\Application Files\myApp.Host_2_1_6_7
我在这里错过了什么吗?
任何帮助将不胜感激。