我在从 Visual Studio 2010 Professional 部署时遇到了一些麻烦。
这是错误
错误 1 注册插件和/或工作流时出错。一个意料之外的问题发生了。C:\Program Files (x86)\MSBuild\Microsoft\CRM\Microsoft.CrmDeveloperTools.CrmClient.targets 176 4 EPAM.Plugins.Deployment
我找到了这个文件和 176 行。
Deploy the Plugins and Workflows using the registration file(s)
============================================================ -->
<Target Name="PluginsAndWorkflowsDeploy" Condition="'@(RegisterPlugin)' != ''">
<Message Text="WorkingFolder: $(Workingfolder)" Importance="high" />
<RegisterPlugin // this is 176 line
DiscoveryServer="$(CRMDiscoveryServer)"
Port="$(CRMDiscoveryServerPort)"
Scheme="$(CRMDiscoveryServerScheme)"
Organization="$(CRMOrganization)"
Password="$(CRMUserPassword)"
UserName="$(CRMUserName)"
Domain="$(CRMUserDomain)"
SolutionName="$(CRMSolutionName)"
RegistrationFile="%(RegisterPlugin.Identity)"
WorkingFolder="$(WorkingFolder)"
/>
</Target>
//如果它很重要:我们使用 git 作为源代码控制。
如果您对此错误有所了解,请提供帮助。