2017-01-30 49 views
0

我已經創建了Outlook vsto插件。它不是安裝在一些機器上,但在一些機器上它不work.So,調試我雙擊了.vsto file.And它給了我以下異常:當我雙擊addin.vsto文件時,我得到Ribbon1.xml文件沒有發現異常

名稱:CustomPane_outlookAddIn來源:文件:/// C:/ Program Files (x86)// Outlook插件/ CustomPane_outlookAddIn.vsto

**************異常文本******* ******* System.Deployment.Application.DeploymentDownloadException:正在下載 file:/// C:/ Program Files(x86)// Outlook Plug-In/Ribbon1.xml沒有成功。 ---> System.Net.WebException: 找不到文件'C:/ Program Files(x86)// Outlook Plug-In/Ribbon1.xml'。 ---> System.Net.WebException:找不到 文件'C:/ Program Files(x86)// Outlook Plug-In/Ribbon1.xml'。 ---> System.IO.FileNotFoundException:不能 找到文件'C:/ Program Files(x86)// Outlook Plug-In/Ribbon1.xml'。 System.IO.__ Error.WinIOError(Int32 errorCode,String maybeFullPath)at System.IO.FileStream.Init(String path,FileMode mode,FileAccess access,Int32 rights,Boolean useRights,FileShare share,Int32 bufferSize,FileOptions (String path,FileMode mode,FileAccess access,FileShare share,Int32 bufferSize,FileOptions選項,String msgPath,Boolean bFromProxy)at System.Net.FileWebStream..ctor(FileWebRequest request,String path, FileMode mode,FileAccess access,FileShare sharing,Int32 length, 布爾異步)在System.Net.FileWebResponse..ctor(FileWebRequest 請求,Uri URI,FileAccess訪問,布爾asyncHint)--- 內部異常堆棧跟蹤---在 System.Net.FileWebResponse..ctor (FileWebRequest request,Uri uri, FileAccess access,Boolean asyncHint)at System.Net.FileWebRequest.GetResponseCallback(Object state)--- End of internal exception stack trace --- at System.Net.FileWebRequest.EndGetResponse( IAsyncResult asyncResult)
at System.Net.FileWebRequest.GetResponse()at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)---內部異常堆棧結束t比賽---在 Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.DownloadAddIn(時間跨度 超時)在 Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.InstallAddIn()

我得到這個兩個外掛程序加載正確的位置以及在outlook中不加載的位置上的錯誤。我的vsto項目中有一個ribbon1.cs和ribbon1.xml文件。但是,我沒有在我的ThisAddin.cs文件中引用它那麼,它爲什麼要加載該文件?

回答

0

問題是我的解決方案中有一個ribbon1.xml文件,它自動被vsto文件挑選出來。我刪除了解決該問題的那個文件。

相關問題