Files
csharp/src/LibKubernetesGenerator/templates/SourceGenerationContext.cs.template

16 lines
479 B
Plaintext
Raw Normal View History

// <auto-generated>
// Code generated by https://github.com/kubernetes-client/csharp/tree/master/src/LibKubernetesGenerator
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// </auto-generated>
#if NET8_0_OR_GREATER
namespace k8s
{
{{ for definition in definitions }}
[JsonSerializable(typeof({{ GetClassName definition }}))]
{{ end }}
public partial class SourceGenerationContext : JsonSerializerContext
{
}
}
#endif