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

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

Issue 13632059: Issue 351: Reimplement OAuth2 - Step 2 (Auth PCL - only data types) (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
« no previous file with comments | « no previous file | Src/GoogleApis.Auth.DotNet4/OAuth2/LocalServerCodeReceiver.cs » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
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')" />
4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{8CFBF8D2-64CB-4703-A5B0-F9EF4DE41FA7}</ProjectGuid>
8 <OutputType>Library</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>Google.Apis.Auth</RootNamespace>
11 <AssemblyName>Google.Apis.Auth.PlatformServices</AssemblyName>
12 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment>
14 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefine d*'">..\..\</SolutionDir>
15 <RestorePackages>true</RestorePackages>
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;TRACE</DefineConstants>
23 <ErrorReport>prompt</ErrorReport>
24 <WarningLevel>4</WarningLevel>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27 <DebugType>pdbonly</DebugType>
28 <Optimize>true</Optimize>
29 <OutputPath>bin\Release\</OutputPath>
30 <DefineConstants>TRACE</DefineConstants>
31 <ErrorReport>prompt</ErrorReport>
32 <WarningLevel>4</WarningLevel>
33 <DocumentationFile>Google.Apis.Auth.PlatformServices.xml</DocumentationFile>
34 </PropertyGroup>
35 <ItemGroup>
36 <Reference Include="Microsoft.Threading.Tasks">
37 <HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\net40\Microsoft.Th reading.Tasks.dll</HintPath>
38 </Reference>
39 <Reference Include="Microsoft.Threading.Tasks.Extensions">
40 <HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\net40\Microsoft.Th reading.Tasks.Extensions.dll</HintPath>
41 </Reference>
42 <Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
43 <HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\net40\Microsoft.Th reading.Tasks.Extensions.Desktop.dll</HintPath>
44 </Reference>
45 <Reference Include="Newtonsoft.Json">
46 <HintPath>..\..\packages\Newtonsoft.Json.5.0.6\lib\net40\Newtonsoft.Json.d ll</HintPath>
47 </Reference>
48 <Reference Include="System" />
49 <Reference Include="System.Core" />
50 <Reference Include="System.Net" />
51 <Reference Include="System.Net.Http, Version=2.1.10.0, Culture=neutral, Publ icKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
52 <SpecificVersion>False</SpecificVersion>
53 <HintPath>..\..\packages\Microsoft.Net.Http.2.1.10\lib\net40\System.Net.Ht tp.dll</HintPath>
54 </Reference>
55 <Reference Include="System.Net.Http.Extensions">
56 <HintPath>..\..\packages\Microsoft.Net.Http.2.1.10\lib\net40\System.Net.Ht tp.Extensions.dll</HintPath>
57 </Reference>
58 <Reference Include="System.Net.Http.Primitives">
59 <HintPath>..\..\packages\Microsoft.Net.Http.2.1.10\lib\net40\System.Net.Ht tp.Primitives.dll</HintPath>
60 </Reference>
61 <Reference Include="System.Net.Http.WebRequest, Version=2.1.10.0, Culture=ne utral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
62 <SpecificVersion>False</SpecificVersion>
63 <HintPath>..\..\packages\Microsoft.Net.Http.2.1.10\lib\net40\System.Net.Ht tp.WebRequest.dll</HintPath>
64 </Reference>
65 <Reference Include="System.Runtime">
66 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\net40\System.Runtime.dll </HintPath>
67 </Reference>
68 <Reference Include="System.Threading.Tasks">
69 <HintPath>..\..\packages\Microsoft.Bcl.1.0.19\lib\net40\System.Threading.T asks.dll</HintPath>
70 </Reference>
71 <Reference Include="System.Xml.Linq" />
72 <Reference Include="System.Data.DataSetExtensions" />
73 <Reference Include="Microsoft.CSharp" />
74 <Reference Include="System.Data" />
75 <Reference Include="System.Xml" />
76 </ItemGroup>
77 <ItemGroup>
78 <Compile Include="OAuth2\GoogleWebAuthenticationBroker.cs" />
79 <Compile Include="OAuth2\LocalServerCodeReceiver.cs" />
80 <Compile Include="OAuth2\PromptCodeReceiver.cs" />
81 <Compile Include="OAuth2\ServiceAccountCredential.cs" />
82 <Compile Include="Properties\AssemblyInfo.cs" />
83 </ItemGroup>
84 <ItemGroup>
85 <None Include="packages.config" />
86 </ItemGroup>
87 <ItemGroup>
88 <ProjectReference Include="..\GoogleApis.Auth\GoogleApis.Auth.csproj">
89 <Project>{0aaaf32e-2bf0-49c5-bc2d-90874cfb5510}</Project>
90 <Name>GoogleApis.Auth</Name>
91 </ProjectReference>
92 <ProjectReference Include="..\GoogleApis.DotNet4\GoogleApis.DotNet4.csproj">
93 <Project>{c4da0abe-2c2e-4bb8-9881-5ff80b0c1afd}</Project>
94 <Name>GoogleApis.DotNet4</Name>
95 </ProjectReference>
96 <ProjectReference Include="..\GoogleApis\GoogleApis.csproj">
97 <Project>{826cf988-eee8-4b75-8f53-b7e851a17baa}</Project>
98 <Name>GoogleApis</Name>
99 </ProjectReference>
100 </ItemGroup>
101 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
102 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(Sol utionDir)\.nuget\NuGet.targets')" />
103 <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')" />
104 <Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="' $(BclBuildImported)' == ''">
105 <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" />
106 <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" />
107 </Target>
108 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.·
109 Other similar extension points exist, see Microsoft.Common.targets.
110 <Target Name="BeforeBuild">
111 </Target>
112 <Target Name="AfterBuild">
113 </Target>
114 -->
115 </Project>
OLDNEW
« no previous file with comments | « no previous file | Src/GoogleApis.Auth.DotNet4/OAuth2/LocalServerCodeReceiver.cs » ('j') | no next file with comments »

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