KeyValueClient.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.20506</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{7A412BEA-ED4B-45A7-B2F0-526FB9B5D138}</ProjectGuid>
  9. <ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>Microsoft.Hawaii.KeyValue.Client</RootNamespace>
  13. <AssemblyName>Microsoft.Hawaii.KeyValue.Client</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
  16. <TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
  17. <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
  18. <SilverlightApplication>false</SilverlightApplication>
  19. <ValidateXaml>true</ValidateXaml>
  20. <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
  21. <SccProjectName>
  22. </SccProjectName>
  23. <SccLocalPath>
  24. </SccLocalPath>
  25. <SccAuxPath>
  26. </SccAuxPath>
  27. <SccProvider>
  28. </SccProvider>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  31. <DebugSymbols>true</DebugSymbols>
  32. <DebugType>full</DebugType>
  33. <Optimize>false</Optimize>
  34. <OutputPath>Bin\Debug</OutputPath>
  35. <DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
  36. <NoStdLib>true</NoStdLib>
  37. <NoConfig>true</NoConfig>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  42. <DebugType>pdbonly</DebugType>
  43. <Optimize>true</Optimize>
  44. <OutputPath>Bin\Release</OutputPath>
  45. <DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
  46. <NoStdLib>true</NoStdLib>
  47. <NoConfig>true</NoConfig>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. <DocumentationFile>Bin\Release\Microsoft.Hawaii.KeyValue.Client.xml</DocumentationFile>
  51. </PropertyGroup>
  52. <ItemGroup>
  53. <Reference Include="System.Runtime.Serialization" />
  54. <Reference Include="System.Servicemodel.Web" />
  55. <Reference Include="System.Windows" />
  56. <Reference Include="system" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="System.Net" />
  60. <Reference Include="mscorlib.extensions" />
  61. <Reference Include="System.Xml.Serialization" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="..\..\common\Version.cs">
  65. <Link>Properties\Version.cs</Link>
  66. </Compile>
  67. <Compile Include="KeyValueService.cs" />
  68. <Compile Include="Model\KeyValueItem.cs" />
  69. <Compile Include="NamespaceDoc.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. <Compile Include="ServiceAgents\DeleteByKeysAgent.cs" />
  72. <Compile Include="ServiceAgents\DeleteAgent.cs" />
  73. <Compile Include="ServiceAgents\SetAgent.cs" />
  74. <Compile Include="ServiceAgents\CreateAgent.cs">
  75. <SubType>Code</SubType>
  76. </Compile>
  77. <Compile Include="ServiceAgents\GetAgent.cs" />
  78. <Compile Include="ServiceAgents\GetByKeyAgent.cs" />
  79. <Compile Include="ServiceAgents\GetByKeysAgent.cs">
  80. <SubType>Code</SubType>
  81. </Compile>
  82. <Compile Include="ServiceRequest\DeleteByKeysRequest.cs" />
  83. <Compile Include="ServiceRequest\GetByKeysRequest.cs" />
  84. <Compile Include="ServiceRequest\SetRequest.cs" />
  85. <Compile Include="ServiceResults\DeleteResult.cs" />
  86. <Compile Include="ServiceResults\GetByKeyResult.cs" />
  87. <Compile Include="ServiceResults\GetByKeysResult.cs" />
  88. <Compile Include="ServiceResults\GetResult.cs" />
  89. <Compile Include="ServiceResults\SetResult.cs" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <ProjectReference Include="..\..\common\ClientLibraryBase\ClientLibraryBase.csproj">
  93. <Project>{AC93C88D-4A95-48CD-BA6E-146A03AFEA53}</Project>
  94. <Name>ClientLibraryBase</Name>
  95. </ProjectReference>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />
  98. <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />
  99. <ProjectExtensions />
  100. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  101. Other similar extension points exist, see Microsoft.Common.targets.
  102. <Target Name="BeforeBuild">
  103. </Target>
  104. <Target Name="AfterBuild">
  105. </Target>
  106. -->
  107. </Project>