使用 Office 365 邮件构建守护程序或服务应用程序——编译错误
Building Daemon or Service Apps with Office 365 mail -- Compilation Error
我正在关注 this entry at Exchange dev blog (MSDN)。
对于 GITHub 上发布的示例项目,我遇到了以下构建错误,想知道我错过了哪一步...
Could not copy the file "AccessMailboxAsApp\Content\myappcert.pfx"
because it was not found.
Could not copy the file
"AccessMailboxAsApp\Content\encryptionCert.pfx" because it was not
found.
听起来您需要浏览该博客的 "Configuring a X.509 public cert for your application" 部分。
编辑:
似乎 Matthias 上传到 GitHub 的项目文件 AccessMailboxAsApp.csproj
已将这些文件添加到 .\AccessMailboxAsApp\Content
文件夹中,如以下行所示:
<Content Include="Content\encryptionCert.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Content\myappcert.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
如果您正在使用其他证书文件,您可以将它们从项目中删除。在 Solution Explorer 中,展开 Content 文件夹,然后右键单击这两个文件并选择 "Exclude from Project".
我正在关注 this entry at Exchange dev blog (MSDN)。
对于 GITHub 上发布的示例项目,我遇到了以下构建错误,想知道我错过了哪一步...
Could not copy the file "AccessMailboxAsApp\Content\myappcert.pfx" because it was not found.
Could not copy the file "AccessMailboxAsApp\Content\encryptionCert.pfx" because it was not found.
听起来您需要浏览该博客的 "Configuring a X.509 public cert for your application" 部分。
编辑:
似乎 Matthias 上传到 GitHub 的项目文件 AccessMailboxAsApp.csproj
已将这些文件添加到 .\AccessMailboxAsApp\Content
文件夹中,如以下行所示:
<Content Include="Content\encryptionCert.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Content\myappcert.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
如果您正在使用其他证书文件,您可以将它们从项目中删除。在 Solution Explorer 中,展开 Content 文件夹,然后右键单击这两个文件并选择 "Exclude from Project".