My Project description is:
<ItemGroup>
<PackageReference Include="Autofac" Version="4.6.1" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.2.0" />
<PackageReference Include="Autofac.ServiceFabric" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ServiceFabric" Version="6.0.*" />
<PackageReference Include="Microsoft.ServiceFabric.Data" Version="2.8.*" />
<PackageReference Include="Microsoft.ServiceFabric.Services" Version="2.8.*" />
<PackageReference Include="Microsoft.ServiceFabric.Services.Remoting" Version="2.8.*" />
</ItemGroup>
I get the following warnings on compilation
warning NU1608: Detected package version outside of dependency constraint: Microsoft.ServiceFabric.Actors 2.4.164 requires Microsoft.ServiceFabric (= 5.4.164) but version Microsoft.ServiceFabric 6.0.211 was resolved.
warning NU1608: Detected package version outside of dependency constraint: Microsoft.ServiceFabric.Actors 2.4.164 requires Microsoft.ServiceFabric.Data (= 2.4.164) but version Microsoft.ServiceFabric.Data 2.8.211 was resolved.
warning NU1608: Detected package version outside of dependency constraint: Microsoft.ServiceFabric.Actors 2.4.164 requires Microsoft.ServiceFabric.Services (= 2.4.164) but version Microsoft.ServiceFabric.Services 2.8.211 was resolved.
I would guess this is because I am not explicitly referencing a later version of Microsoft.ServiceFabric.Actors? Not really sure.
Not really sure if this is an issue, but I like not having warnings when I build!
P.S. Been using Autofac.ServiceFabric for nearly 6 months now and it's been working flawlessly! Thanks! 😄
My Project description is:
I get the following warnings on compilation
I would guess this is because I am not explicitly referencing a later version of
Microsoft.ServiceFabric.Actors? Not really sure.Not really sure if this is an issue, but I like not having warnings when I build!
P.S. Been using
Autofac.ServiceFabricfor nearly 6 months now and it's been working flawlessly! Thanks! 😄