LocalizationWindows.csproj 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <None Include="Resources\Strings.Designer.cs" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Reference Include="MonoGame.Framework">
  56. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Content Include="Icon.ico" />
  63. <Content Include="Localization.png" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <MonoGameContentReference Include="..\Content\Content.mgcb">
  67. <Link>Content\Content.mgcb</Link>
  68. </MonoGameContentReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <EmbeddedResource Include="..\Content\Strings.da.resx">
  72. <Link>Strings.da.resx</Link>
  73. </EmbeddedResource>
  74. <EmbeddedResource Include="..\Content\Strings.fr.resx">
  75. <Link>Strings.fr.resx</Link>
  76. </EmbeddedResource>
  77. <EmbeddedResource Include="..\Content\Strings.ja.resx">
  78. <Link>Strings.ja.resx</Link>
  79. </EmbeddedResource>
  80. <EmbeddedResource Include="..\Content\Strings.ko.resx">
  81. <Link>Strings.ko.resx</Link>
  82. </EmbeddedResource>
  83. <EmbeddedResource Include="..\Content\Strings.resx">
  84. <Link>Strings.resx</Link>
  85. <Generator>ResXFileCodeGenerator</Generator>
  86. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  87. </EmbeddedResource>
  88. </ItemGroup>
  89. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  90. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Content.Builder.targets" />
  91. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  92. Other similar extension points exist, see Microsoft.Common.targets.
  93. <Target Name="BeforeBuild">
  94. </Target>
  95. <Target Name="AfterBuild">
  96. </Target>
  97. -->
  98. </Project>