ImageSearch.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  7. <ProjectGuid>{1796E5D8-D2EF-495F-ACDA-EFC93710C7DE}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>ImageSearch</RootNamespace>
  10. <AssemblyName>ImageSearch</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  13. <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
  14. <NuGetPackageImportStamp>
  15. </NuGetPackageImportStamp>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug</OutputPath>
  22. <DefineConstants>DEBUG;</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <ConsolePause>false</ConsolePause>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>full</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release</OutputPath>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <ConsolePause>false</ConsolePause>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Compile Include="Services\BingSearch\Image.cs" />
  37. <Compile Include="Services\BingSearch\SearchResult.cs" />
  38. <Compile Include="Services\BingSearch\Suggestion.cs" />
  39. <Compile Include="Services\BingSearch\Thumbnail.cs" />
  40. <Compile Include="Model\ImageResult.cs" />
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. <Compile Include="Services\ServiceKeys.cs" />
  43. <Compile Include="ViewModel\ImageSearchViewModel.cs" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Folder Include="Helpers\" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Reference Include="Acr.UserDialogs, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  50. <HintPath>..\..\packages\Acr.UserDialogs.6.3.1\lib\portable-win+net45+wp8+win8+wpa81\Acr.UserDialogs.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="Acr.UserDialogs.Interface, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  54. <HintPath>..\..\packages\Acr.UserDialogs.6.3.1\lib\portable-win+net45+wp8+win8+wpa81\Acr.UserDialogs.Interface.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="MvvmHelpers, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  58. <HintPath>..\..\packages\Refractored.MvvmHelpers.1.1.0\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\MvvmHelpers.dll</HintPath>
  59. <Private>True</Private>
  60. </Reference>
  61. <Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  62. <HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
  63. <Private>True</Private>
  64. </Reference>
  65. <Reference Include="Splat, Version=1.6.2.0, Culture=neutral, processorArchitecture=MSIL">
  66. <HintPath>..\..\packages\Splat.1.6.2\lib\Portable-net45+win+wpa81+wp80\Splat.dll</HintPath>
  67. <Private>True</Private>
  68. </Reference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="packages.config" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  74. </Project>