BuildAllTargets.proj 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. PROJECT: Mouri Internal Library Essentials
  4. FILE: BuildAllTargets.proj
  5. PURPOSE: Build all targets script for Visual Studio C++ Project
  6. LICENSE: The MIT License
  7. DEVELOPER: Mouri_Naruto (Mouri_Naruto AT Outlook.com)
  8. -->
  9. <Project
  10. DefaultTargets="Restore;Build"
  11. xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  12. <PropertyGroup>
  13. <SolutionPath>$(MSBuildThisFileDirectory)*.sln</SolutionPath>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="$(SolutionPath)">
  17. <AdditionalProperties>Configuration=Debug;Platform=x86</AdditionalProperties>
  18. </ProjectReference>
  19. <ProjectReference Include="$(SolutionPath)">
  20. <AdditionalProperties>Configuration=Release;Platform=x86</AdditionalProperties>
  21. </ProjectReference>
  22. <ProjectReference Include="$(SolutionPath)">
  23. <AdditionalProperties>Configuration=Debug;Platform=x64</AdditionalProperties>
  24. </ProjectReference>
  25. <ProjectReference Include="$(SolutionPath)">
  26. <AdditionalProperties>Configuration=Release;Platform=x64</AdditionalProperties>
  27. </ProjectReference>
  28. <ProjectReference Include="$(SolutionPath)">
  29. <AdditionalProperties>Configuration=Debug;Platform=ARM64</AdditionalProperties>
  30. </ProjectReference>
  31. <ProjectReference Include="$(SolutionPath)">
  32. <AdditionalProperties>Configuration=Release;Platform=ARM64</AdditionalProperties>
  33. </ProjectReference>
  34. </ItemGroup>
  35. <Target Name="Restore" >
  36. <MSBuild
  37. Projects="@(ProjectReference)"
  38. Targets="Restore"
  39. StopOnFirstFailure="True"
  40. Properties="PreferredToolArchitecture=x64" />
  41. </Target>
  42. <Target Name="Build" >
  43. <MSBuild
  44. Projects="@(ProjectReference)"
  45. Targets="Build"
  46. BuildInParallel="True"
  47. StopOnFirstFailure="True"
  48. Properties="PreferredToolArchitecture=x64" />
  49. </Target>
  50. <Target Name="Rebuild" >
  51. <MSBuild
  52. Projects="@(ProjectReference)"
  53. Targets="Rebuild"
  54. BuildInParallel="True"
  55. StopOnFirstFailure="True"
  56. Properties="PreferredToolArchitecture=x64" />
  57. </Target>
  58. </Project>