summaryrefslogtreecommitdiffstats
path: root/SendGrid
diff options
context:
space:
mode:
authorBrandon West <brawest@gmail.com>2014-06-14 12:14:17 -0600
committerBrandon West <brawest@gmail.com>2014-06-14 12:14:17 -0600
commit43850ff6be7b4e63dd03933a2e8bd3d1ae188592 (patch)
tree3b6b08d8b46850d2bff326b1859aeebf59121b71 /SendGrid
parentb03cd60a3ce0a77172686c01e79079d977ede7a5 (diff)
downloadsendgrid-csharp-43850ff6be7b4e63dd03933a2e8bd3d1ae188592.zip
sendgrid-csharp-43850ff6be7b4e63dd03933a2e8bd3d1ae188592.tar.gz
sendgrid-csharp-43850ff6be7b4e63dd03933a2e8bd3d1ae188592.tar.bz2
add app.config
Diffstat (limited to 'SendGrid')
-rw-r--r--SendGrid/SendGridMail/app.config15
-rw-r--r--SendGrid/Tests/app.config19
2 files changed, 34 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/app.config b/SendGrid/SendGridMail/app.config
new file mode 100644
index 0000000..f04d0d1
--- /dev/null
+++ b/SendGrid/SendGridMail/app.config
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-2.6.8.0" newVersion="2.6.8.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-2.6.8.0" newVersion="2.6.8.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration> \ No newline at end of file
diff --git a/SendGrid/Tests/app.config b/SendGrid/Tests/app.config
new file mode 100644
index 0000000..cf0f3ba
--- /dev/null
+++ b/SendGrid/Tests/app.config
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-2.6.6.0" newVersion="2.6.6.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-2.6.6.0" newVersion="2.6.6.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-2.2.18.0" newVersion="2.2.18.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration> \ No newline at end of file