_build.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.0</TargetFramework>
  5. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  6. <RootNamespace></RootNamespace>
  7. <IsPackable>False</IsPackable>
  8. <NoWarn>CS0649;CS0169</NoWarn>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Nuke.Common" Version="0.21.2" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <NukeSpecificationFiles Include="**\*.json" Exclude="bin\**;obj\**" />
  15. <NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
  16. <None Remove="*.csproj.DotSettings;*.ref.*.txt" />
  17. <!-- Common build related files -->
  18. <None Include="..\build.ps1" />
  19. <None Include="..\build.sh" />
  20. <None Include="..\.nuke" />
  21. <None Include="..\global.json" Condition="Exists('..\global.json')" />
  22. <None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
  23. <None Include="..\azure-pipelines.yml" Condition="Exists('..\azure-pipelines.yml')" />
  24. <None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
  25. <None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
  26. <None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
  27. <None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" />
  28. </ItemGroup>
  29. </Project>