diff options
author | Brandon West <brawest@gmail.com> | 2014-05-21 18:21:22 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-05-21 18:21:22 -0600 |
commit | bf134d8753de04b621724b8f6862d657f0a1d8c6 (patch) | |
tree | 4ad92a958888881de92925319a8bab1577dbf6fd | |
parent | 9513eb817482fdef19a6c70aa8a6f7fbd38ac4ff (diff) | |
download | sendgrid-csharp-bf134d8753de04b621724b8f6862d657f0a1d8c6.zip sendgrid-csharp-bf134d8753de04b621724b8f6862d657f0a1d8c6.tar.gz sendgrid-csharp-bf134d8753de04b621724b8f6862d657f0a1d8c6.tar.bz2 |
sign assemblies
-rw-r--r-- | SendGrid/SendGridMail/Mail.csproj | 7 | ||||
-rw-r--r-- | SendGrid/Tests/Tests.csproj | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj index 89a926c..28ca092 100644 --- a/SendGrid/SendGridMail/Mail.csproj +++ b/SendGrid/SendGridMail/Mail.csproj @@ -35,6 +35,12 @@ <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
+ <PropertyGroup>
+ <SignAssembly>true</SignAssembly>
+ </PropertyGroup>
+ <PropertyGroup>
+ <AssemblyOriginatorKeyFile>sendgrid-csharp.snk</AssemblyOriginatorKeyFile>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.16\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
@@ -78,6 +84,7 @@ <ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
+ <None Include="sendgrid-csharp.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl.Build.targets')" />
diff --git a/SendGrid/Tests/Tests.csproj b/SendGrid/Tests/Tests.csproj index 40872f4..bbab954 100644 --- a/SendGrid/Tests/Tests.csproj +++ b/SendGrid/Tests/Tests.csproj @@ -35,6 +35,12 @@ <WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
+ <PropertyGroup>
+ <SignAssembly>true</SignAssembly>
+ </PropertyGroup>
+ <PropertyGroup>
+ <AssemblyOriginatorKeyFile>sendgrid-csharp.snk</AssemblyOriginatorKeyFile>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
@@ -102,6 +108,7 @@ <None Include="packages.config">
<SubType>Designer</SubType>
</None>
+ <None Include="sendgrid-csharp.snk" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SendGridMail\Mail.csproj">
|