Directory.Build.props 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. PROJECT: Mouri Internal Library Essentials
  4. FILE: Directory.Build.props
  5. PURPOSE: Global settings for Visual Studio C++ Project
  6. LICENSE: The MIT License
  7. DEVELOPER: Mouri_Naruto (Mouri_Naruto AT Outlook.com)
  8. -->
  9. <Project>
  10. <PropertyGroup>
  11. <MileProjectOutputPath>$(MSBuildThisFileDirectory)Output\</MileProjectOutputPath>
  12. <MileProjectBinariesPath>$(MileProjectOutputPath)Binaries\</MileProjectBinariesPath>
  13. <MileProjectObjectsPath>$(MileProjectOutputPath)Objects\</MileProjectObjectsPath>
  14. <GenerateProjectSpecificOutputFolder>False</GenerateProjectSpecificOutputFolder>
  15. <MSBuildProjectExtensionsPath>$(MileProjectObjectsPath)$(Configuration)\$(MSBuildProjectName)\obj\</MSBuildProjectExtensionsPath>
  16. <AppxPackageDir>$(MileProjectBinariesPath)AppPackages\$(ProjectName)\</AppxPackageDir>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.vcxproj'">
  19. <OutDir>$(MileProjectBinariesPath)$(Configuration)\$(Platform)\</OutDir>
  20. <IntDir>$(MileProjectObjectsPath)$(Configuration)\$(MSBuildProjectName)\$(Platform)\</IntDir>
  21. <GeneratedFilesDir>$(IntDir)Generated Files\</GeneratedFilesDir>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.wapproj'">
  24. <OutputPath>$(MileProjectBinariesPath)$(Configuration)\$(MSBuildProjectName)\$(Platform)\</OutputPath>
  25. <IntermediateOutputPath>$(MileProjectObjectsPath)$(Configuration)\$(MSBuildProjectName)\</IntermediateOutputPath>
  26. <BaseIntermediateOutputPath>$(IntermediateOutputPath)</BaseIntermediateOutputPath>
  27. </PropertyGroup>
  28. <ItemGroup Label="NuGet" Condition="'$(MSBuildProjectExtension)' == '.vcxproj'">
  29. <ProjectCapability Include="PackageReferences" />
  30. </ItemGroup>
  31. <PropertyGroup Label="NuGet" Condition="('$(MSBuildProjectExtension)' == '.vcxproj') Or ('$(MSBuildProjectExtension)' == '.wapproj')">
  32. <!-- https://github.com/microsoft/react-native-windows/pull/8195 -->
  33. <AssetTargetFallback>$(AssetTargetFallback);native;uap$(TargetPlatformVersion);</AssetTargetFallback>
  34. <!-- https://github.com/microsoft/react-native-windows/pull/8195 -->
  35. <TargetFrameworkMoniker>native,Version=v0.0</TargetFrameworkMoniker>
  36. <NuGetTargetMoniker>native,Version=v0.0</NuGetTargetMoniker>
  37. <TargetFrameworkMoniker Condition ="'$(DesignTimeBuild)' == 'true'">.NETCore,Version=v5.0</TargetFrameworkMoniker>
  38. <NuGetTargetMoniker Condition ="'$(DesignTimeBuild)' == 'true'">.NETCore,Version=v5.0</NuGetTargetMoniker>
  39. <RuntimeIdentifiers>win;win-x86;win-x64;win-arm;win-arm64;win10-x86;win10-x64;win10-arm;win10-arm64</RuntimeIdentifiers>
  40. </PropertyGroup>
  41. </Project>