Search.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>{41DD62EB-2257-45C3-94C8-E7EE079BAA41}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>OpenVIII.Search</RootNamespace>
  10. <AssemblyName>Search</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  18. <DebugSymbols>true</DebugSymbols>
  19. <OutputPath>..\bin\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <DebugType>full</DebugType>
  22. <PlatformTarget>x64</PlatformTarget>
  23. <ErrorReport>prompt</ErrorReport>
  24. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  25. <Prefer32Bit>true</Prefer32Bit>
  26. <LangVersion>latest</LangVersion>
  27. </PropertyGroup>
  28. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  29. <OutputPath>..\bin\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <Optimize>true</Optimize>
  32. <DebugType>pdbonly</DebugType>
  33. <PlatformTarget>x64</PlatformTarget>
  34. <ErrorReport>prompt</ErrorReport>
  35. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  36. <Prefer32Bit>true</Prefer32Bit>
  37. <LangVersion>latest</LangVersion>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  40. <DebugSymbols>true</DebugSymbols>
  41. <OutputPath>bin\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <DebugType>full</DebugType>
  44. <PlatformTarget>x86</PlatformTarget>
  45. <ErrorReport>prompt</ErrorReport>
  46. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  47. <Prefer32Bit>true</Prefer32Bit>
  48. <LangVersion>latest</LangVersion>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  51. <OutputPath>bin\</OutputPath>
  52. <DefineConstants>TRACE</DefineConstants>
  53. <Optimize>true</Optimize>
  54. <DebugType>pdbonly</DebugType>
  55. <PlatformTarget>x86</PlatformTarget>
  56. <ErrorReport>prompt</ErrorReport>
  57. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  58. <Prefer32Bit>true</Prefer32Bit>
  59. <LangVersion>latest</LangVersion>
  60. </PropertyGroup>
  61. <ItemGroup>
  62. <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL" />
  63. <Reference Include="System" />
  64. <Reference Include="System.Core" />
  65. <Reference Include="System.Xml.Linq" />
  66. <Reference Include="System.Data.DataSetExtensions" />
  67. <Reference Include="Microsoft.CSharp" />
  68. <Reference Include="System.Data" />
  69. <Reference Include="System.Net.Http" />
  70. <Reference Include="System.Xml" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Compile Include="Search.cs" />
  74. <Compile Include="Program.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <None Include="App.config" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="..\Core\Core.csproj">
  82. <Project>{a5408515-75b8-4eea-8e9f-2c9cd7b56e59}</Project>
  83. <Name>Core</Name>
  84. </ProjectReference>
  85. <ProjectReference Include="..\Encoding\Encoding.csproj">
  86. <Project>{a9b33bf4-9b03-4e3d-bf6a-181521046ee8}</Project>
  87. <Name>Encoding</Name>
  88. </ProjectReference>
  89. </ItemGroup>
  90. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  91. </Project>