Skip to content

Commit e11cc58

Browse files
authored
Upgrade Microsoft.AspNetCore.WebUtilities to 2.2.0 for netstandard2.0 (#358)
* Upgrade Microsoft.AspNetCore.WebUtilities to 2.2.0 for netstandard2.0 and netcoreapp2.1 * Mking the change only for netstandard2.0
1 parent ba9755b commit e11cc58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/KubernetesClient/KubernetesClient.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="3.0.0" Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netcoreapp2.1'" />
3232
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.50" PrivateAssets="all" />
3333
<PackageReference Include="Portable.BouncyCastle" Version="1.8.1.3" />
34-
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="1.1.2" />
34+
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="1.1.2" Condition="'$(TargetFramework)' != 'netstandard2.0'" />
35+
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
3536
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.10" />
3637
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.6.68" PrivateAssets="all" Condition="'$(MSBuildRuntimeType)' != 'Core'" />
3738
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" Condition="'$(TargetFramework)' != 'netstandard2.0' and '$(TargetFramework)' != 'netcoreapp2.1'" />

0 commit comments

Comments
 (0)