Hello,
I was trying to add few entity classes using CrmSrcUtil.exe in Crm 2013 Online- Trial. But when I am trying to build the solution, I get the below error:-
Error 3 The command "C:\Users\singhs15\Documents\Visual Studio 2010\Projects\CrmUtil\CrmUtil\bin\Debug\CrmSvcUtil.exe" exited with code 9009. CrmUtil.
The code in app.config is as follows:-
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="url" value="https://crmnaive.crm5.dynamics.com/"/>
<add key="o" value="CrmProxy.cs"/>
<add key="u" value="username"/>
<add key="p" value="password"/>
<add key="servicecontextname" value="Xrmcontext"/>
</appSettings>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="configConsoleListener" type="System.Diagnostics.ConsoleTraceListener">
<filter type="System.Diagnostics.EventTypeFilter" initializeData="Error"/>
</add>
</listeners>
</trace>
</system.diagnostics>
</configuration>
Thanks!