|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup>
|
3 | 3 | <Authors>The Kubernetes Project Authors</Authors>
|
4 | 4 | <Copyright>2017 The Kubernetes Project Authors</Copyright>
|
|
9 | 9 | <PackageIconUrl>https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png</PackageIconUrl>
|
10 | 10 | <PackageTags>kubernetes;docker;containers;</PackageTags>
|
11 | 11 |
|
12 |
| - <TargetFrameworks>netstandard1.4;net452;netcoreapp2.1;xamarinios10;monoandroid81</TargetFrameworks> |
13 |
| - <TargetFrameworks Condition="'$(TF_BUILD)' == 'True'">netstandard1.4;net452;netcoreapp2.1</TargetFrameworks> |
14 |
| - <TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netstandard1.4;netcoreapp2.1</TargetFrameworks> |
| 12 | + <TargetFrameworks>netstandard1.4;netstandard2.0;net452;net461;netcoreapp2.1;xamarinios10;monoandroid81</TargetFrameworks> |
| 13 | + <TargetFrameworks Condition="'$(MSBuildRuntimeType)' == 'Core'">netstandard1.4;netstandard2.0;net452;net461;netcoreapp2.1</TargetFrameworks> |
| 14 | + <TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netstandard1.4;netstandard2.0;netcoreapp2.1</TargetFrameworks> |
15 | 15 | <RootNamespace>k8s</RootNamespace>
|
16 | 16 | <SignAssembly>true</SignAssembly>
|
17 | 17 | <AssemblyOriginatorKeyFile>kubernetes-client.snk</AssemblyOriginatorKeyFile>
|
|
25 | 25 | <PackageReference Include="Portable.BouncyCastle" Version="1.8.1.3" />
|
26 | 26 | <PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="1.1.2" />
|
27 | 27 | <PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.10" />
|
28 |
| - <PackageReference Include="MSBuild.Sdk.Extras" Version="1.6.68" PrivateAssets="all" /> |
| 28 | + <PackageReference Include="MSBuild.Sdk.Extras" Version="1.6.68" PrivateAssets="all" Condition="'$(MSBuildRuntimeType)' != 'Core'" /> |
29 | 29 | <PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
30 |
| - <PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" /> |
31 |
| - <PackageReference Include="System.ValueTuple" Version="4.4.0" /> |
32 | 30 | <PackageReference Include="YamlDotNet.Signed" Version="5.1.0" />
|
33 | 31 | </ItemGroup>
|
34 |
| - <ItemGroup Condition="'$(TargetFramework)' == 'net452'"> |
| 32 | + <ItemGroup Condition="'$(TargetFramework)' == 'net452' OR '$(TargetFramework)' == 'net461'"> |
35 | 33 | <Reference Include="System.Net.Http.WebRequest" />
|
| 34 | + <PackageReference Include="System.ValueTuple" Version="4.4.0" /> |
36 | 35 | </ItemGroup>
|
37 | 36 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.4'">
|
38 | 37 | <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
|
| 38 | + <PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" /> |
| 39 | + <PackageReference Include="System.ValueTuple" Version="4.4.0" /> |
39 | 40 | </ItemGroup>
|
40 | 41 | <ItemGroup Condition="'$(TargetFramework)' == 'xamarinios10'">
|
41 | 42 | <Reference Include="System.Numerics" />
|
|
0 commit comments