DumpStrings.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{35F80BCD-F1E5-4F1A-BEAA-C60220A7CB14}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>DumpStrings</RootNamespace>
  10. <AssemblyName>DumpStrings</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  17. <DebugSymbols>true</DebugSymbols>
  18. <OutputPath>bin\x64\Debug\</OutputPath>
  19. <DefineConstants>DEBUG;TRACE</DefineConstants>
  20. <DebugType>full</DebugType>
  21. <PlatformTarget>x64</PlatformTarget>
  22. <ErrorReport>prompt</ErrorReport>
  23. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  24. <Prefer32Bit>true</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  27. <OutputPath>bin\x64\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <Optimize>true</Optimize>
  30. <DebugType>pdbonly</DebugType>
  31. <PlatformTarget>x64</PlatformTarget>
  32. <ErrorReport>prompt</ErrorReport>
  33. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  34. <Prefer32Bit>true</Prefer32Bit>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>bin\x86\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <DebugType>full</DebugType>
  41. <PlatformTarget>x86</PlatformTarget>
  42. <ErrorReport>prompt</ErrorReport>
  43. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  44. <Prefer32Bit>true</Prefer32Bit>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  47. <OutputPath>bin\x86\Release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>x86</PlatformTarget>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. <Prefer32Bit>true</Prefer32Bit>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL" />
  58. <Reference Include="System" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Xml.Linq" />
  61. <Reference Include="System.Data.DataSetExtensions" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Net.Http" />
  65. <Reference Include="System.Xml" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="Program.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="App.config" />
  73. <None Include="multiple.bat">
  74. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  75. </None>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <ProjectReference Include="..\Core\Core.csproj">
  79. <Project>{a5408515-75b8-4eea-8e9f-2c9cd7b56e59}</Project>
  80. <Name>Core</Name>
  81. </ProjectReference>
  82. <ProjectReference Include="..\Encoding\Encoding.csproj">
  83. <Project>{a9b33bf4-9b03-4e3d-bf6a-181521046ee8}</Project>
  84. <Name>Encoding</Name>
  85. </ProjectReference>
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. </Project>