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

Delta Between Two Patch Sets: Src/GoogleApis.Auth/GoogleApis.Auth.csproj

Issue 13972043: Issue 351: Reimplement OAuth2 (Step 3 - Tests, Flows and Credential) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: minor Created 10 years, 10 months ago
Right Patch Set: minor Created 10 years, 9 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « Src/GoogleApis.Auth.Tests/packages.config ('k') | Src/GoogleApis.Auth/OAuth2/AuthorizationCodeFlow.cs » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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>{0AAAF32E-2BF0-49C5-BC2D-90874CFB5510}</ProjectGuid> 8 <ProjectGuid>{0AAAF32E-2BF0-49C5-BC2D-90874CFB5510}</ProjectGuid>
9 <OutputType>Library</OutputType> 9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <AppDesignerFolder>Properties</AppDesignerFolder>
(...skipping 25 matching lines...) Expand all
36 <DocumentationFile>Google.Apis.Auth.xml</DocumentationFile> 36 <DocumentationFile>Google.Apis.Auth.xml</DocumentationFile>
37 </PropertyGroup> 37 </PropertyGroup>
38 <ItemGroup> 38 <ItemGroup>
39 <Compile Include="JsonWebSignature.cs" /> 39 <Compile Include="JsonWebSignature.cs" />
40 <Compile Include="JsonWebToken.cs" /> 40 <Compile Include="JsonWebToken.cs" />
41 <Compile Include="OAuth2\AuthorizationCodeWebApp.cs" /> 41 <Compile Include="OAuth2\AuthorizationCodeWebApp.cs" />
42 <Compile Include="GoogleJsonWebSignature.cs" /> 42 <Compile Include="GoogleJsonWebSignature.cs" />
43 <Compile Include="OAuth2\IAuthorizationCodeFlow.cs" /> 43 <Compile Include="OAuth2\IAuthorizationCodeFlow.cs" />
44 <Compile Include="OAuth2\AuthorizationCodeInstalledApp.cs" /> 44 <Compile Include="OAuth2\AuthorizationCodeInstalledApp.cs" />
45 <Compile Include="OAuth2\BearerToken.cs" /> 45 <Compile Include="OAuth2\BearerToken.cs" />
46 <Compile Include="OAuth2\Credential.cs" /> 46 <Compile Include="OAuth2\TokenRequestExtenstions.cs" />
47 <Compile Include="OAuth2\UserCredential.cs" />
47 <Compile Include="OAuth2\AuthorizationCodeFlow.cs" /> 48 <Compile Include="OAuth2\AuthorizationCodeFlow.cs" />
48 <Compile Include="OAuth2\ClientSecrets.cs" /> 49 <Compile Include="OAuth2\ClientSecrets.cs" />
49 <Compile Include="OAuth2\GoogleAuthorizationCodeFlow.cs" /> 50 <Compile Include="OAuth2\GoogleAuthorizationCodeFlow.cs" />
50 <Compile Include="OAuth2\IAccessMethod.cs" /> 51 <Compile Include="OAuth2\IAccessMethod.cs" />
51 <Compile Include="OAuth2\IAuthorizationCodeInstalledApp.cs" /> 52 <Compile Include="OAuth2\IAuthorizationCodeInstalledApp.cs" />
52 <Compile Include="OAuth2\ICodeReceiver.cs" /> 53 <Compile Include="OAuth2\ICodeReceiver.cs" />
53 <Compile Include="OAuth2\Requests\AuthorizationCodeRequestUrl.cs" /> 54 <Compile Include="OAuth2\Requests\AuthorizationCodeRequestUrl.cs" />
54 <Compile Include="OAuth2\Requests\AuthorizationCodeTokenRequest.cs" /> 55 <Compile Include="OAuth2\Requests\AuthorizationCodeTokenRequest.cs" />
55 <Compile Include="OAuth2\Requests\GoogleAssertionTokenRequest.cs" /> 56 <Compile Include="OAuth2\Requests\GoogleAssertionTokenRequest.cs" />
56 <Compile Include="OAuth2\Requests\GoogleAuthorizationCodeRequestUrl.cs" /> 57 <Compile Include="OAuth2\Requests\GoogleAuthorizationCodeRequestUrl.cs" />
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 <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" /> 111 <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" />
111 </Target> 112 </Target>
112 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.· 113 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.·
113 Other similar extension points exist, see Microsoft.Common.targets. 114 Other similar extension points exist, see Microsoft.Common.targets.
114 <Target Name="BeforeBuild"> 115 <Target Name="BeforeBuild">
115 </Target> 116 </Target>
116 <Target Name="AfterBuild"> 117 <Target Name="AfterBuild">
117 </Target> 118 </Target>
118 --> 119 -->
119 </Project> 120 </Project>
LEFTRIGHT

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