diff options
author | Brandon West <brawest@gmail.com> | 2013-07-28 16:14:44 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2013-07-29 09:28:31 -0600 |
commit | 94be8fa5df2056cdb7dd70687363cef630c38318 (patch) | |
tree | 60dfd882f298ed382ef84f49a38d556d5b6d4c17 /SendGrid/Example | |
parent | 6e1292c0d75f79bc32e85c79c5870a8dc3cf21d1 (diff) | |
download | sendgrid-csharp-94be8fa5df2056cdb7dd70687363cef630c38318.zip sendgrid-csharp-94be8fa5df2056cdb7dd70687363cef630c38318.tar.gz sendgrid-csharp-94be8fa5df2056cdb7dd70687363cef630c38318.tar.bz2 |
set things up for both .NET 4.0 and 4.5
Diffstat (limited to 'SendGrid/Example')
-rw-r--r-- | SendGrid/Example/Example.csproj | 2 | ||||
-rw-r--r-- | SendGrid/Example/app.config | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 169697f..97a47b4 100644 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -10,7 +10,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Example</RootNamespace>
<AssemblyName>Example</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
diff --git a/SendGrid/Example/app.config b/SendGrid/Example/app.config index a3101c1..e212038 100644 --- a/SendGrid/Example/app.config +++ b/SendGrid/Example/app.config @@ -1,4 +1,4 @@ <?xml version="1.0"?>
<configuration>
-<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>
+<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
</configuration>
|