diff options
author | Brandon West <brawest@gmail.com> | 2014-06-20 16:37:43 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-06-20 16:37:43 -0600 |
commit | 01f5917478845215f41b4f115867be08b093f7ba (patch) | |
tree | c4986b0ac1c923672b255d5448d09d6f5ac56d92 | |
parent | 4322aa383740981e43f87031cf2225c4ab13cb3a (diff) | |
download | sendgrid-csharp-01f5917478845215f41b4f115867be08b093f7ba.zip sendgrid-csharp-01f5917478845215f41b4f115867be08b093f7ba.tar.gz sendgrid-csharp-01f5917478845215f41b4f115867be08b093f7ba.tar.bz2 |
sign assembly when build config is release
-rw-r--r-- | SendGrid/SendGridMail/Mail.csproj | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/Properties/AssemblyInfo.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj index 9968f16..b6fa355 100644 --- a/SendGrid/SendGridMail/Mail.csproj +++ b/SendGrid/SendGridMail/Mail.csproj @@ -60,7 +60,7 @@ <SignAssembly>true</SignAssembly>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<Prefer32Bit>false</Prefer32Bit>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'BuildNet45|AnyCPU' ">
<Optimize>false</Optimize>
diff --git a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs index dbff93a..6067283 100644 --- a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs +++ b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs @@ -25,9 +25,9 @@ using System.Runtime.InteropServices; [assembly: Guid("193fa200-8430-4206-aacd-2d2bb2dfa6cf")]
-#if (BUILD)
+#if BUILD
[assembly: InternalsVisibleTo("Tests")]
-#elif (DEBUG)
+#elif DEBUG
[assembly: InternalsVisibleTo("Tests")]
#else
[assembly: InternalsVisibleTo("Tests," + "" +
|