_build.csproj 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  6. <RootNamespace></RootNamespace>
  7. <IsPackable>False</IsPackable>
  8. <NoWarn>CS0649;CS0169</NoWarn>
  9. </PropertyGroup>
  10. <Import Project="..\build\JetBrains.dotMemoryUnit.props" />
  11. <ItemGroup>
  12. <PackageReference Include="Nuke.Common" Version="5.0.0" />
  13. <PackageReference Include="xunit.runner.console" Version="2.3.1" />
  14. <PackageReference Include="vswhere" Version="2.6.7" Condition=" '$(OS)' == 'Windows_NT' " />
  15. <PackageReference Include="ILRepack.NETStandard" Version="2.0.4" />
  16. <PackageReference Include="MicroCom.CodeGenerator" Version="0.10.4" />
  17. <!-- Keep in sync with Avalonia.Build.Tasks -->
  18. <PackageReference Include="Mono.Cecil" Version="0.11.2" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
  22. <NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
  23. <None Remove="*.csproj.DotSettings;*.ref.*.txt" />
  24. <!-- Common build related files -->
  25. <None Include="..\build.ps1" />
  26. <None Include="..\build.sh" />
  27. <None Include="..\.nuke" />
  28. <None Include="..\global.json" Condition="Exists('..\global.json')" />
  29. <None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
  30. <None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
  31. <None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
  32. <None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
  33. <None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" />
  34. <Compile Remove="Numerge/**/*.*" />
  35. <Compile Include="Numerge/Numerge/**/*.cs" />
  36. </ItemGroup>
  37. </Project>