Skip to content

Instantly share code, notes, and snippets.

@tswann
Created September 20, 2011 16:29
Show Gist options
  • Save tswann/1229582 to your computer and use it in GitHub Desktop.
Save tswann/1229582 to your computer and use it in GitHub Desktop.
Sample config file for the CrmSvcUtil.exe tool in the Dynamics 2011 SDK
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="di" value="<< your device id here >>" />
<add key="dp" value="<< your device password here>>" />
<add key="username" value="<< Live Id here >>" />
<add key="password" value="<< Live Id password here>>" />
<add key="serviceContextName" value="MyServiceContext" />
<add key="l" value="CS" />
<add key="codewriterfilter" value="SvcUtilFilter.CodeWriterFilter,SvcUtilFilter" />
<add key="o" value="CRMEntities.cs" />
</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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment