* port autorest to watch generator * rename KubernetesWatchGenerator -> KubernetesGenerator * add validate * fix format * fix generate code warnings * fix line ending * fix missing property found by comp check * do not new http method
22 lines
609 B
XML
22 lines
609 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CaseExtensions" Version="1.1.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
<PackageReference Include="NSwag.Core" Version="11.17.2" />
|
|
<PackageReference Include="Nustache" Version="1.16.0.8" NoWarn="NU1701" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="*.template">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|