File tree 3 files changed +5
-9
lines changed
KubernetesClient.ModelConverter/AutoMapper
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 10
10
<PackageVersion Include =" IdentityModel.OidcClient" Version =" 5.2.1" />
11
11
<PackageVersion Include =" JsonPatch.Net" Version =" 2.1.0" />
12
12
<PackageVersion Include =" MartinCostello.Logging.XUnit" Version =" 0.3.0" />
13
- <PackageVersion Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 8 .0.0" />
14
- <PackageVersion Include =" Microsoft.Extensions.Hosting" Version =" 8 .0.0" />
15
- <PackageVersion Include =" Microsoft.Extensions.Logging" Version =" 8 .0.0" />
13
+ <PackageVersion Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 9 .0.0" />
14
+ <PackageVersion Include =" Microsoft.Extensions.Hosting" Version =" 9 .0.0" />
15
+ <PackageVersion Include =" Microsoft.Extensions.Logging" Version =" 9 .0.0" />
16
16
<PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.8.0" />
17
17
<PackageVersion Include =" Microsoft.TestPlatform.ObjectModel" Version =" 17.8.0" />
18
18
<PackageVersion Include =" Moq" Version =" 4.20.70" />
45
45
<PackageVersion Include =" Scriban" Version =" 5.9.1" />
46
46
</ItemGroup >
47
47
<ItemGroup >
48
- <GlobalPackageReference Include =" Microsoft.CodeAnalysis.NetAnalyzers" Version =" 8 .0.0" />
48
+ <GlobalPackageReference Include =" Microsoft.CodeAnalysis.NetAnalyzers" Version =" 9 .0.0" />
49
49
<GlobalPackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" />
50
50
<GlobalPackageReference Include =" Microsoft.VisualStudio.SlnGen" Version =" 11.2.6" />
51
51
<GlobalPackageReference Include =" Nerdbank.GitVersioning" Version =" 3.6.133" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net8.0</TargetFrameworks >
4
+ <TargetFrameworks >net8.0;net9.0 </TargetFrameworks >
5
5
<RootNamespace >k8s</RootNamespace >
6
6
<PublishAot >true</PublishAot >
7
7
<IsAotCompatible >true</IsAotCompatible >
Original file line number Diff line number Diff line change @@ -167,9 +167,5 @@ private static void ManualConfigurations(IMapperConfigurationExpression cfg)
167
167
. ForMember ( dest => dest . Name , opt => opt . Ignore ( ) )
168
168
. ForMember ( dest => dest . Request , opt => opt . Ignore ( ) )
169
169
. ReverseMap ( ) ;
170
-
171
- cfg . CreateMap < V1beta3PolicyRulesWithSubjects , V1PolicyRulesWithSubjects > ( )
172
- . ForMember ( dest => dest . Subjects , opt => opt . Ignore ( ) )
173
- . ReverseMap ( ) ;
174
170
}
175
171
}
You can’t perform that action at this time.
0 commit comments