vcxproj.template 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. %%CONFS%%
  5. </ItemGroup>
  6. <PropertyGroup Label="Globals">
  7. <ProjectGuid>{%%UUID%%}</ProjectGuid>
  8. <RootNamespace>godot</RootNamespace>
  9. <Keyword>MakeFileProj</Keyword>
  10. <VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
  11. </PropertyGroup>
  12. %%PROPERTIES%%
  13. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.Default.props') "/>
  14. <PropertyGroup Label="Configuration">
  15. <ConfigurationType>Makefile</ConfigurationType>
  16. <UseOfMfc>false</UseOfMfc>
  17. <PlatformToolset>v143</PlatformToolset> <!--Might be overridden in the platform specific import or Microsoft.Cpp.$(GodotPlatform).user.props -->
  18. <DefaultPlatformToolset Condition="'$(DefaultPlatformToolset)'==''"/> <!--Workaround until https://youtrack.jetbrains.com/issue/RIDER-123783 is resolved. -->
  19. <OutDir>$(SolutionDir)\bin\$(GodotPlatform)\$(GodotConfiguration)\</OutDir>
  20. <IntDir>obj\$(GodotPlatform)\$(GodotConfiguration)\</IntDir>
  21. <LayoutDir>$(OutDir)\Layout</LayoutDir>
  22. </PropertyGroup>
  23. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.props') "/>
  24. <ImportGroup Label="ExtensionSettings">
  25. </ImportGroup>
  26. <ImportGroup Label="PropertySheets">
  27. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props" Condition="Exists('$(UserRootDir)\Microsoft.Cpp.$(GodotPlatform).user.props')" Label="LocalAppDataPlatform" />
  28. </ImportGroup>
  29. <PropertyGroup Label="UserMacros" />
  30. %%IMPORTS%%
  31. <PropertyGroup>
  32. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  33. <ActiveProjectItemList></ActiveProjectItemList>
  34. </PropertyGroup>
  35. <ItemGroup Condition="'$(IncludeListImported)'==''">
  36. %%DEFAULT_ITEMS%%
  37. </ItemGroup>
  38. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets') "/>
  39. <ImportGroup Label="ExtensionTargets">
  40. </ImportGroup>
  41. </Project>
  42. <!-- CHECKSUM
  43. %%HASH%%
  44. -->