Files
csharp/examples/patch-aot/patch-aot.csproj
Hugo Woodiwiss c3b3a08b31 Enable JSON Patch in AOT (#1588)
* Special case serialization of V1Patch

* Add AOT JSON Patch Example
2024-11-05 05:51:29 +00:00

12 lines
347 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\KubernetesClient.Aot\KubernetesClient.Aot.csproj"/>
</ItemGroup>
</Project>