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 | |
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
-rw-r--r-- | SendGrid/Example/Example.csproj | 2 | ||||
-rw-r--r-- | SendGrid/Example/app.config | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/Mail.csproj | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/Properties/AssemblyInfo.cs | 4 | ||||
-rw-r--r-- | SendGrid/SendGridMail/nuget/SendGrid.2.0.2.nupkg | bin | 15019 -> 0 bytes | |||
-rw-r--r-- | SendGrid/SendGridMail/nuget/SendGrid.2.0.3.nupkg | bin | 0 -> 15000 bytes | |||
-rw-r--r-- | SendGrid/SendGridMail/nuget/lib/SendGridMail.dll (renamed from SendGrid/SendGridMail/nuget/lib/net45/SendGridMail.dll) | bin | 28160 -> 28160 bytes | |||
-rw-r--r-- | SendGrid/Tests/Tests.csproj | 2 |
8 files changed, 6 insertions, 6 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>
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj index 9dbcb56..e7b0cde 100644 --- a/SendGrid/SendGridMail/Mail.csproj +++ b/SendGrid/SendGridMail/Mail.csproj @@ -11,7 +11,7 @@ <RootNamespace>SendGridMail</RootNamespace>
<AssemblyName>SendGridMail</AssemblyName>
<FileAlignment>512</FileAlignment>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
diff --git a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs index 647c78a..2b0670f 100644 --- a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs +++ b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs @@ -41,5 +41,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2.0.2")]
-[assembly: AssemblyFileVersion("2.0.2")]
+[assembly: AssemblyVersion("2.0.3")]
+[assembly: AssemblyFileVersion("2.0.3")]
diff --git a/SendGrid/SendGridMail/nuget/SendGrid.2.0.2.nupkg b/SendGrid/SendGridMail/nuget/SendGrid.2.0.2.nupkg Binary files differdeleted file mode 100644 index 1f4c668..0000000 --- a/SendGrid/SendGridMail/nuget/SendGrid.2.0.2.nupkg +++ /dev/null diff --git a/SendGrid/SendGridMail/nuget/SendGrid.2.0.3.nupkg b/SendGrid/SendGridMail/nuget/SendGrid.2.0.3.nupkg Binary files differnew file mode 100644 index 0000000..fc61693 --- /dev/null +++ b/SendGrid/SendGridMail/nuget/SendGrid.2.0.3.nupkg diff --git a/SendGrid/SendGridMail/nuget/lib/net45/SendGridMail.dll b/SendGrid/SendGridMail/nuget/lib/SendGridMail.dll Binary files differindex 4d18d96..c72d46c 100644 --- a/SendGrid/SendGridMail/nuget/lib/net45/SendGridMail.dll +++ b/SendGrid/SendGridMail/nuget/lib/SendGridMail.dll diff --git a/SendGrid/Tests/Tests.csproj b/SendGrid/Tests/Tests.csproj index cb4e524..b129641 100644 --- a/SendGrid/Tests/Tests.csproj +++ b/SendGrid/Tests/Tests.csproj @@ -11,7 +11,7 @@ <RootNamespace>Tests</RootNamespace>
<AssemblyName>Tests</AssemblyName>
<FileAlignment>512</FileAlignment>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|