12 lines
377 B
XML
12 lines
377 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>
|