Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1104)

Side by Side Diff: Src/GoogleApis/GoogleApis.csproj

Issue 13412046: Reimplement OAuth2 library - Step 1 (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: minor Created 10 years, 10 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> 2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" /> 3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" />
4 <PropertyGroup> 4 <PropertyGroup>
5 <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion> 5 <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 7 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8 <ProjectGuid>{826CF988-EEE8-4B75-8F53-B7E851A17BAA}</ProjectGuid> 8 <ProjectGuid>{826CF988-EEE8-4B75-8F53-B7E851A17BAA}</ProjectGuid>
9 <OutputType>Library</OutputType> 9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <AppDesignerFolder>Properties</AppDesignerFolder>
(...skipping 23 matching lines...) Expand all
34 <OutputPath>bin\Release\</OutputPath> 34 <OutputPath>bin\Release\</OutputPath>
35 <DefineConstants>TRACE</DefineConstants> 35 <DefineConstants>TRACE</DefineConstants>
36 <ErrorReport>prompt</ErrorReport> 36 <ErrorReport>prompt</ErrorReport>
37 <WarningLevel>4</WarningLevel> 37 <WarningLevel>4</WarningLevel>
38 <DocumentationFile>Google.Apis.xml</DocumentationFile> 38 <DocumentationFile>Google.Apis.xml</DocumentationFile>
39 </PropertyGroup> 39 </PropertyGroup>
40 <ItemGroup> 40 <ItemGroup>
41 <!-- A reference to the entire .NET Framework is automatically included --> 41 <!-- A reference to the entire .NET Framework is automatically included -->
42 <None Include="Apis\Http\ClassDiagram.cd" /> 42 <None Include="Apis\Http\ClassDiagram.cd" />
43 <None Include="Apis\ServiceRequests.cd" /> 43 <None Include="Apis\ServiceRequests.cd" />
44 <None Include="Apis\[Media]\ClassDiagram.cd" />
44 <None Include="packages.config" /> 45 <None Include="packages.config" />
45 </ItemGroup> 46 </ItemGroup>
46 <ItemGroup> 47 <ItemGroup>
47 <Compile Include="Apis\Authentication\AuthenticatorHelpers.cs" /> 48 <Compile Include="Apis\Authentication\AuthenticatorHelpers.cs" />
48 <Compile Include="Apis\Authentication\DelegateAuthenticator.cs" /> 49 <Compile Include="Apis\Authentication\DelegateAuthenticator.cs" />
49 <Compile Include="Apis\Authentication\IAuthenticator.cs" /> 50 <Compile Include="Apis\Authentication\IAuthenticator.cs" />
50 <Compile Include="Apis\Authentication\NullAuthenticator.cs" /> 51 <Compile Include="Apis\Authentication\NullAuthenticator.cs" />
51 <Compile Include="Apis\Discovery\DiscoveryVersion.cs" /> 52 <Compile Include="Apis\Discovery\DiscoveryVersion.cs" />
52 <Compile Include="Apis\Discovery\Features.cs" /> 53 <Compile Include="Apis\Discovery\Features.cs" />
53 <Compile Include="Apis\Discovery\IParameter.cs" /> 54 <Compile Include="Apis\Discovery\IParameter.cs" />
54 <Compile Include="Apis\Discovery\Parameter.cs" /> 55 <Compile Include="Apis\Discovery\Parameter.cs" />
55 <Compile Include="Apis\Http\ConfigurableHttpClient.cs" /> 56 <Compile Include="Apis\Http\ConfigurableHttpClient.cs" />
56 <Compile Include="Apis\Http\ConfigurableMessageHandler.cs" /> 57 <Compile Include="Apis\Http\ConfigurableMessageHandler.cs" />
57 <Compile Include="Apis\Http\BackOffHandler.cs" /> 58 <Compile Include="Apis\Http\BackOffHandler.cs" />
59 <Compile Include="Apis\Http\ExponentialBackOffInitializer.cs" />
58 <Compile Include="Apis\Http\HttpClientFactory.cs" /> 60 <Compile Include="Apis\Http\HttpClientFactory.cs" />
59 <Compile Include="Apis\Http\HttpConsts.cs" /> 61 <Compile Include="Apis\Http\HttpConsts.cs" />
60 <Compile Include="Apis\Http\HttpExtenstions.cs" /> 62 <Compile Include="Apis\Http\HttpExtenstions.cs" />
61 <Compile Include="Apis\Http\IConfigurableHttpClientInitializer.cs" /> 63 <Compile Include="Apis\Http\IConfigurableHttpClientInitializer.cs" />
62 <Compile Include="Apis\Http\IHttpClientFactory.cs" /> 64 <Compile Include="Apis\Http\IHttpClientFactory.cs" />
63 <Compile Include="Apis\Http\IHttpExceptionHandler.cs" /> 65 <Compile Include="Apis\Http\IHttpExceptionHandler.cs" />
64 <Compile Include="Apis\Http\IHttpExecuteInterceptor.cs" /> 66 <Compile Include="Apis\Http\IHttpExecuteInterceptor.cs" />
65 <Compile Include="Apis\Http\IHttpUnsuccessfulResponseHandler.cs" /> 67 <Compile Include="Apis\Http\IHttpUnsuccessfulResponseHandler.cs" />
66 <Compile Include="Apis\ISerializer.cs" /> 68 <Compile Include="Apis\ISerializer.cs" />
67 <Compile Include="Apis\Json\IJsonSerializer.cs" /> 69 <Compile Include="Apis\Json\IJsonSerializer.cs" />
68 <Compile Include="Apis\Json\JsonDictionary.cs" /> 70 <Compile Include="Apis\Json\JsonDictionary.cs" />
69 <Compile Include="Apis\Json\JsonReader.cs" /> 71 <Compile Include="Apis\Json\JsonReader.cs" />
70 <Compile Include="Apis\Json\JsonToken.cs" /> 72 <Compile Include="Apis\Json\JsonToken.cs" />
71 <Compile Include="Apis\Json\NewtonsoftJsonSerializer.cs" /> 73 <Compile Include="Apis\Json\NewtonsoftJsonSerializer.cs" />
72 <Compile Include="Apis\Json\TokenStream.cs" /> 74 <Compile Include="Apis\Json\TokenStream.cs" />
73 <Compile Include="Apis\Logging\ILogger.cs" /> 75 <Compile Include="Apis\Logging\ILogger.cs" />
74 <Compile Include="Apis\Logging\NullLogger.cs" /> 76 <Compile Include="Apis\Logging\NullLogger.cs" />
75 <Compile Include="Apis\Requests\ClientServiceRequest.cs" /> 77 <Compile Include="Apis\Requests\ClientServiceRequest.cs" />
76 <Compile Include="Apis\Requests\ETagAction.cs" /> 78 <Compile Include="Apis\Requests\ETagAction.cs" />
77 <Compile Include="Apis\Requests\IClientServiceRequest.cs" /> 79 <Compile Include="Apis\Requests\IClientServiceRequest.cs" />
78 <Compile Include="Apis\Requests\IDirectResponseSchema.cs" /> 80 <Compile Include="Apis\Requests\IDirectResponseSchema.cs" />
79 <Compile Include="Apis\Requests\ParameterCollection.cs" /> 81 <Compile Include="Apis\Requests\Parameters\ParameterCollection.cs" />
80 <Compile Include="Apis\Requests\ParameterValidator.cs" /> 82 <Compile Include="Apis\Requests\Parameters\ParameterUtils.cs" />
83 <Compile Include="Apis\Requests\Parameters\ParameterValidator.cs" />
81 <Compile Include="Apis\Requests\RequestBuilder.cs" /> 84 <Compile Include="Apis\Requests\RequestBuilder.cs" />
82 <Compile Include="Apis\Requests\RequestError.cs" /> 85 <Compile Include="Apis\Requests\RequestError.cs" />
83 <Compile Include="Apis\Requests\SingleError.cs" /> 86 <Compile Include="Apis\Requests\SingleError.cs" />
84 <Compile Include="Apis\Services\BaseClientService.cs" /> 87 <Compile Include="Apis\Services\BaseClientService.cs" />
85 <Compile Include="Apis\Services\IClientService.cs" /> 88 <Compile Include="Apis\Services\IClientService.cs" />
89 <Compile Include="Apis\Util\IClock.cs" />
90 <Compile Include="Apis\Util\Store\IDataStore.cs" />
86 <Compile Include="Apis\Testing\VisibleForTestOnly.cs" /> 91 <Compile Include="Apis\Testing\VisibleForTestOnly.cs" />
87 <Compile Include="Apis\[Media]\Download\IDownloadProgress.cs" /> 92 <Compile Include="Apis\[Media]\Download\IDownloadProgress.cs" />
88 <Compile Include="Apis\[Media]\Download\IMediaDownloader.cs" /> 93 <Compile Include="Apis\[Media]\Download\IMediaDownloader.cs" />
89 <Compile Include="Apis\[Media]\Download\MediaDownloader.cs" /> 94 <Compile Include="Apis\[Media]\Download\MediaDownloader.cs" />
90 <Compile Include="Apis\[Media]\Upload\IUploadProgress.cs" /> 95 <Compile Include="Apis\[Media]\Upload\IUploadProgress.cs" />
91 <Compile Include="Apis\[Media]\Upload\ResumableUpload.cs" /> 96 <Compile Include="Apis\[Media]\Upload\ResumableUpload.cs" />
92 <Compile Include="Apis\Util\ExponentialBackOff.cs" /> 97 <Compile Include="Apis\Util\ExponentialBackOff.cs" />
93 <Compile Include="Apis\Util\IBackOff.cs" /> 98 <Compile Include="Apis\Util\IBackOff.cs" />
94 <Compile Include="Apis\Util\ReadOnlyDictionary.cs" /> 99 <Compile Include="Apis\Util\ReadOnlyDictionary.cs" />
95 <Compile Include="Apis\Util\Repeatable.cs" /> 100 <Compile Include="Apis\Util\Repeatable.cs" />
(...skipping 27 matching lines...) Expand all
123 <Reference Include="System.Runtime"> 128 <Reference Include="System.Runtime">
124 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40 sl4 win8 wp71\System.Runtime.dll</HintPath> 129 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40 sl4 win8 wp71\System.Runtime.dll</HintPath>
125 </Reference> 130 </Reference>
126 <Reference Include="System.Threading.Tasks"> 131 <Reference Include="System.Threading.Tasks">
127 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40 sl4 win8 wp71\System.Threading.Tasks.dll</HintPath> 132 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40 sl4 win8 wp71\System.Threading.Tasks.dll</HintPath>
128 </Reference> 133 </Reference>
129 <Reference Include="Zlib.Portable"> 134 <Reference Include="Zlib.Portable">
130 <HintPath>..\..\packages\Zlib.Portable.1.9.2\lib\portable-net4 sl4 wp71 wi n8\Zlib.Portable.dll</HintPath> 135 <HintPath>..\..\packages\Zlib.Portable.1.9.2\lib\portable-net4 sl4 wp71 wi n8\Zlib.Portable.dll</HintPath>
131 </Reference> 136 </Reference>
132 </ItemGroup> 137 </ItemGroup>
138 <ItemGroup />
133 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFramewo rkVersion)\Microsoft.Portable.CSharp.targets" /> 139 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFramewo rkVersion)\Microsoft.Portable.CSharp.targets" />
134 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(Sol utionDir)\.nuget\NuGet.targets')" /> 140 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(Sol utionDir)\.nuget\NuGet.targets')" />
135 <Import Project="..\..\packages\Microsoft.Bcl.Build.1.0.8\tools\Microsoft.Bcl. Build.targets" /> 141 <Import Project="..\..\packages\Microsoft.Bcl.Build.1.0.10\tools\Microsoft.Bcl .Build.targets" Condition="Exists('..\..\packages\Microsoft.Bcl.Build.1.0.10\too ls\Microsoft.Bcl.Build.targets')" />
142 <Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="' $(BclBuildImported)' == ''">
143 <Error Condition="!Exists('..\..\packages\Microsoft.Bcl.Build.1.0.10\tools\M icrosoft.Bcl.Build.targets')" Text="This project references NuGet package(s) tha t are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKe yword="BCLBUILD2001" />
144 <Error Condition="Exists('..\..\packages\Microsoft.Bcl.Build.1.0.10\tools\Mi crosoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
145 </Target>
136 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.· 146 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.·
137 Other similar extension points exist, see Microsoft.Common.targets. 147 Other similar extension points exist, see Microsoft.Common.targets.
138 <Target Name="BeforeBuild"> 148 <Target Name="BeforeBuild">
139 </Target> 149 </Target>
140 <Target Name="AfterBuild"> 150 <Target Name="AfterBuild">
141 </Target> 151 </Target>
142 --> 152 -->
143 </Project> 153 </Project>
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b