* remove target xamarin ios and android (supported by netstandard) * remove 1.4 * build warning cleared * remove bom * fix ci failed
28 lines
869 B
XML
28 lines
869 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<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="ModelExtensions.cs.template">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Kubernetes.Watch.cs.template">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="IKubernetes.Watch.cs.template">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|