_build.csproj 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <ItemGroup>
  11. <PackageReference Include="Nuke.Common" Version="0.24.0" />
  12. <PackageReference Include="xunit.runner.console" Version="2.3.1" />
  13. <PackageReference Include="JetBrains.dotMemoryUnit" Version="3.0.20171219.105559" />
  14. <PackageReference Include="vswhere" Version="2.6.7" Condition=" '$(OS)' == 'Windows_NT' " />
  15. <PackageReference Include="ILRepack.NETStandard" Version="2.0.4" />
  16. <!-- Keep in sync with Avalonia.Build.Tasks -->
  17. <PackageReference Include="Mono.Cecil" Version="0.11.2" />
  18. <PackageReference Include="Pharmacist.Core" Version="1.8.1" />
  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. <ItemGroup>
  38. <ProjectReference Include="..\src\tools\MicroComGenerator\MicroComGenerator.csproj" />
  39. </ItemGroup>
  40. </Project>