Skip to content

Commit

Permalink
Updated Autofac.Extras.DynamicProxy to 4.4.0 release. Explicitly targ…
Browse files Browse the repository at this point in the history
…eted x64 platform for both target frameworks.
  • Loading branch information
alexmg committed Feb 13, 2018
1 parent beb6172 commit 729c8ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Autofac integration for Azure Service Fabric. Provides service factory implementations for Actors, Stateful Services and Stateless Services.</Description>
<VersionPrefix>2.0.0</VersionPrefix>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<PlatformTarget Condition=" '$(TargetFramework)' == 'net452' ">x64</PlatformTarget>
<PlatformTarget>x64</PlatformTarget>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -31,8 +31,7 @@

<ItemGroup>
<PackageReference Include="Autofac" Version="4.6.2" />
<PackageReference Include="Autofac.Extras.DynamicProxy" Version="4.2.1" />
<PackageReference Include="Castle.Core" Version="4.2.1" />
<PackageReference Include="Autofac.Extras.DynamicProxy" Version="4.4.0" />
<PackageReference Include="Microsoft.ServiceFabric" Version="6.1.456" />
<PackageReference Include="Microsoft.ServiceFabric.Actors" Version="3.0.456" />
<PackageReference Include="Microsoft.ServiceFabric.Data" Version="3.0.456" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net452</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
<NoWarn>$(NoWarn);CS1591;SA1602;SA1611;SA1402</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyOriginatorKeyFile>../../Autofac.snk</AssemblyOriginatorKeyFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
<AssemblyOriginatorKeyFile>../../Autofac.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
Expand Down

0 comments on commit 729c8ef

Please sign in to comment.