我可以重現與MonoDevelop 2.8.6.3相同的問題。我試圖出口項目或創建一個壓縮包時,出現以下錯誤:
File '(...)/Microsoft.Net.Client.3.5' not found.
File '(...)/Microsoft.Net.Framework.3.5.SP1' not found.
File '(...)/Microsoft.Windows.Installer.3.1' not found.
File '' not found.
File '' not found.
The project '(ProjectName)' is referencing the file '' which is located outside the project directory.
The project '(ProjectName)' is referencing the file '' which is located outside the project directory.
解決方案:你需要清理你的.CSPROJ
文件,以使它們與MonoDevelop的兼容。
<SignAssembly>true</SignAssembly>
不知怎的,我測試過的項目屬性窗口中的「標誌組件」複選框選項在Visual Studio,但沒」:
在我的情況,我被刪除以下條目擺脫File '' not found
錯誤爲密鑰文件提供一個路徑。
我被刪除此的ItemGroup擺脫其他錯誤:
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
希望幫助其他人!
感謝您發佈此回覆!後來我從項目中移除了,但是前幾天我重新加載了它,以查看解決方案中是否有簽名的程序集(組成解決方案的一堆.csproj文件)。不幸的是,這不是空白文件「找不到」錯誤的原因。但我確實認爲你在做某些事情 - 可能有一些幻影程序集引用在Windows和Mono(?)下的裝飾方式不同。我會把你的建議傳給當前的項目所有者。 – eb1