-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKubernetesCRDModelGen.Models.postgresql.cnpg.io.csproj
More file actions
35 lines (33 loc) · 1.74 KB
/
KubernetesCRDModelGen.Models.postgresql.cnpg.io.csproj
File metadata and controls
35 lines (33 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<PackageId>KubernetesCRDModelGen.Models.postgresql.cnpg.io</PackageId>
<RepositoryUrl>https://github.com/IvanJosipovic/KubernetesCRDModelGen.Models.postgresql.cnpg.io</RepositoryUrl>
<Description>C# models for Kubernetes CRDs in group postgresql.cnpg.io</Description>
<Authors>Ivan Josipovic</Authors>
<PackageTags>Kubernetes CustomResourceDefinition CRD Models</PackageTags>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<NoWarn>$(NoWarn);CS1591;CS8618</NoWarn>
<WarningsAsErrors>$(WarningsAsErrors);CS8784;CS8785</WarningsAsErrors>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Exclude the output of source generators from the compilation -->
<Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<AdditionalFiles Include="crds\*.yaml" />
</ItemGroup>
</Project>