Skip to content

Commit

Permalink
Adding App.config back
Browse files Browse the repository at this point in the history
  • Loading branch information
JimDaly committed Apr 23, 2018
1 parent 0b2b7ce commit 42a4232
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
*.userosscache
*.sln.docstates

# User-specific sample connection data
common-data-service/App.config

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand Down
29 changes: 29 additions & 0 deletions common-data-service/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>

<!--Un-comment and edit one of the example connection strings below using appropriate values for your environment -->

<!--Online using Office 365-->
<!--<add name="Connect"
connectionString="Url=https://yourOrgName.crm.dynamics.com; [email protected]; Password=yourPassword; authtype=Office365; RequireNewInstance=True" />-->

<!-- On-premises with provided user credentials-->
<!-- <add name="Connect"
connectionString="Url=http://yourServer/yourOrgName; Domain=yourDomain; Username=yourUserName; Password=yourPassword; authtype=AD; RequireNewInstance=True" />-->

<!--On-premises using Windows integrated security-->
<!--<add name="Connect"
connectionString="Url=http://yourServer/yourOrgName; authtype=AD; RequireNewInstance=True" /> -->

<!--On-Premises (IFD) with claims-->
<!--<add name="Connect"
connectionString="Url=https://yourOrgName.yourServer.com/yourOrgName; Username=yourUserName@yourOrgName; Password=yourPassword; authtype=IFD; RequireNewInstance=True" />-->
</connectionStrings>
<system.web>
<compilation debug="true" />
</system.web>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>

0 comments on commit 42a4232

Please sign in to comment.