System.Data.Services.csproj 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A586EC7C-F793-42C1-8C14-D8C4DF147D1A}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>System.Data.Services</RootNamespace>
  12. <AssemblyName>System.Data.Services</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core">
  36. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  37. </Reference>
  38. <Reference Include="System.ServiceModel">
  39. <RequiredTargetFramework>3.0</RequiredTargetFramework>
  40. </Reference>
  41. <Reference Include="System.ServiceModel.Web">
  42. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  43. </Reference>
  44. <Reference Include="System.Xml.Linq">
  45. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  46. </Reference>
  47. <Reference Include="System.Data.DataSetExtensions">
  48. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  49. </Reference>
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Xml" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="ChangeInterceptorAttribute.cs" />
  55. <Compile Include="DataService.cs" />
  56. <Compile Include="DataServiceException.cs" />
  57. <Compile Include="DataServiceHost.cs" />
  58. <Compile Include="DataServiceHostFactory.cs" />
  59. <Compile Include="EntitySetRights.cs" />
  60. <Compile Include="ETagAttribute.cs" />
  61. <Compile Include="ExpandSegment.cs" />
  62. <Compile Include="ExpandSegmentCollection.cs" />
  63. <Compile Include="HandleExceptionArgs.cs" />
  64. <Compile Include="IDataServiceConfiguration.cs" />
  65. <Compile Include="IDataServiceHost.cs" />
  66. <Compile Include="IExpandedResult.cs" />
  67. <Compile Include="IExpandProvider.cs" />
  68. <Compile Include="IgnorePropertiesAttribute.cs" />
  69. <Compile Include="IRequestHandler.cs" />
  70. <Compile Include="IUpdatable.cs" />
  71. <Compile Include="MimeTypeAttribute.cs" />
  72. <Compile Include="ProcessRequestArgs.cs" />
  73. <Compile Include="Assembly\AssemblyInfo.cs" />
  74. <Compile Include="QueryInterceptorAttribute.cs" />
  75. <Compile Include="ServiceOperationRights.cs" />
  76. <Compile Include="SingleResultAttribute.cs" />
  77. <Compile Include="UpdateOperations.cs" />
  78. </ItemGroup>
  79. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  80. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  81. Other similar extension points exist, see Microsoft.Common.targets.
  82. <Target Name="BeforeBuild">
  83. </Target>
  84. <Target Name="AfterBuild">
  85. </Target>
  86. -->
  87. </Project>