Skip to content

Commit

Permalink
Setting the NuGet dependency for extension packages to Minimum inclus…
Browse files Browse the repository at this point in the history
…ive and maximum exclusive
  • Loading branch information
soninaren authored and ahmelsayed committed Mar 28, 2018
1 parent aae49f3 commit 5567b7c
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Newtonsoft.Json" Version="[10.0.3]" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[3.0.0-beta5]" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="[3.0.0-beta5]" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[3.0.0-beta5]" />
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="[1.0.0-beta2]" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[3.0.0-beta5,3.1.0)" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="[3.0.0-beta5,3.1.0)" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[3.0.0-beta5,3.1.0)" />
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="[1.0.0-beta2,1.1.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1]" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[2.1.0]" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="[2.1.0]" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[1.0.0]" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="[2.2.0,2.3.0)" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="[2.2.0,2.3.0)" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="[1.1.0,1.2.0)" />
<PackageReference Include="System.ValueTuple" Version="4.3.0" />
</ItemGroup>

Expand Down

0 comments on commit 5567b7c

Please sign in to comment.