_build.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.12.3" />
  12. <PackageReference Include="xunit.runner.console" Version="2.3.1" />
  13. <PackageReference Include="JetBrains.dotMemoryUnit" Version="3.0.20171219.105559" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
  17. <NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
  18. <None Remove="*.csproj.DotSettings;*.ref.*.txt" />
  19. <!-- Common build related files -->
  20. <None Include="..\build.ps1" />
  21. <None Include="..\build.sh" />
  22. <None Include="..\.nuke" />
  23. <None Include="..\global.json" Condition="Exists('..\global.json')" />
  24. <None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
  25. <None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
  26. <None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
  27. <None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
  28. <None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" />
  29. <Compile Remove="Numerge/**/*.*" />
  30. <Compile Include="Numerge/Numerge/**/*.cs" />
  31. </ItemGroup>
  32. </Project>