LocalizationWindows.csproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  7. <ProductVersion>8.0.30703</ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{E127B47C-2948-4379-A394-A78C32F2E747}</ProjectGuid>
  10. <OutputType>WinExe</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>LocalizationSample</RootNamespace>
  13. <AssemblyName>LocalizationSample</AssemblyName>
  14. <FileAlignment>512</FileAlignment>
  15. <MonoGamePlatform>Windows</MonoGamePlatform>
  16. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  19. <PlatformTarget>x86</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\$(MonoGamePlatform)\$(Platform)\$(Configuration)\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  29. <PlatformTarget>x86</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\$(MonoGamePlatform)\$(Platform)\$(Configuration)\</OutputPath>
  33. <DefineConstants>TRACE;WINDOWS</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <ApplicationIcon>Icon.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Compile Include="..\Content\Strings.Designer.cs">
  42. <Link>Strings.Designer.cs</Link>
  43. <AutoGen>True</AutoGen>
  44. <DesignTime>True</DesignTime>
  45. <DependentUpon>Strings.resx</DependentUpon>
  46. </Compile>
  47. <Compile Include="..\SampleCode\Game1.cs">
  48. <Link>Game1.cs</Link>
  49. </Compile>
  50. <Compile Include="Program.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Reference Include="MonoGame.Framework">
  55. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Content Include="Icon.ico" />
  62. <Content Include="Localization.png" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <MonoGameContentReference Include="..\Content\Content.mgcb">
  66. <Link>Content\Content.mgcb</Link>
  67. </MonoGameContentReference>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <EmbeddedResource Include="..\Content\Strings.da.resx">
  71. <Link>Strings.da.resx</Link>
  72. </EmbeddedResource>
  73. <EmbeddedResource Include="..\Content\Strings.fr.resx">
  74. <Link>Strings.fr.resx</Link>
  75. </EmbeddedResource>
  76. <EmbeddedResource Include="..\Content\Strings.ja.resx">
  77. <Link>Strings.ja.resx</Link>
  78. </EmbeddedResource>
  79. <EmbeddedResource Include="..\Content\Strings.ko.resx">
  80. <Link>Strings.ko.resx</Link>
  81. </EmbeddedResource>
  82. <EmbeddedResource Include="..\Content\Strings.resx">
  83. <Link>Strings.resx</Link>
  84. <Generator>ResXFileCodeGenerator</Generator>
  85. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  86. </EmbeddedResource>
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Content.Builder.targets" />
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>