Proposal: user defined model version explicit converter (#1211)

* introduce user defined model version explicit convertor

* bump ver
This commit is contained in:
Boshi Lian
2023-03-03 09:14:58 -08:00
committed by GitHub
parent 2959174eb6
commit abf6950cae
18 changed files with 424 additions and 271 deletions

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<RootNamespace>k8s.ModelConverter</RootNamespace>
</PropertyGroup>
<ItemGroup>
<CompilerVisibleItemMetadata Include="AdditionalFiles" MetadataName="Generator" />
<AdditionalFiles Include="..\..\swagger.json" Generator="versionconverterautomap,version" />
<ProjectReference Include="..\LibKubernetesGenerator\LibKubernetesGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\KubernetesClient.Models\KubernetesClient.Models.csproj" />
<PackageReference Include="AutoMapper" Version="12.0.0" />
</ItemGroup>
</Project>