Skip to content

Commit 24a4c6b

Browse files
committed
Working on my machine :)
1 parent e3ed36b commit 24a4c6b

21 files changed

+1017
-44
lines changed

.vscode/launch.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/bin/Debug/net5.0/Dropbox.Api.Integration.Tests.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests",
16+
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+
"console": "internalConsole",
18+
"stopAtEntry": false
19+
},
20+
{
21+
"name": ".NET Core Attach",
22+
"type": "coreclr",
23+
"request": "attach"
24+
}
25+
]
26+
}

.vscode/tasks.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/Dropbox.Api.Integration.Tests.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/Dropbox.Api.Integration.Tests.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"${workspaceFolder}/dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/Dropbox.Api.Integration.Tests.csproj",
36+
"/property:GenerateFullPaths=true",
37+
"/consoleloggerparameters:NoSummary"
38+
],
39+
"problemMatcher": "$msCompile"
40+
}
41+
]
42+
}

Setup.ps1

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[CmdletBinding()]
2+
param (
3+
[Parameter(Mandatory)][string]$DbxAppKey,
4+
[Parameter(Mandatory)][string]$DbxAppSecret,
5+
[Parameter(Mandatory)][string]$DbxUserAccessToken,
6+
[System.EnvironmentVariableTarget]$Scope = [System.EnvironmentVariableTarget]::User
7+
)
8+
9+
Function Script:Set-EnvironmentVariable {
10+
[CmdletBinding()]
11+
param (
12+
[Parameter(Mandatory)][string]$Variable,
13+
[Parameter(Mandatory)][string]$Value,
14+
[Parameter(Mandatory)][System.EnvironmentVariableTarget]$Scope
15+
)
16+
[System.Environment]::SetEnvironmentVariable($Variable, $Value, $Scope)
17+
Set-Content -Path Env:\$Variable -Value $Value
18+
19+
}
20+
21+
Function Register-DropboxSdkDotnet {
22+
[CmdletBinding()]
23+
param (
24+
[Parameter(Mandatory)][string]$DbxAppKey,
25+
[Parameter(Mandatory)][string]$DbxAppSecret,
26+
[Parameter(Mandatory)][string]$DbxUserAccessToken,
27+
[System.EnvironmentVariableTarget]$Scope = [System.EnvironmentVariableTarget]::User
28+
)
29+
30+
PROCESS {
31+
Set-EnvironmentVariable 'DROPBOX_INTEGRATION_AppKey' $DbxAppKey $Scope
32+
Set-EnvironmentVariable 'DROPBOX_INTEGRATION_appSecret' $DbxAppSecret $Scope
33+
Set-EnvironmentVariable 'DROPBOX_INTEGRATION_userAccessToken' $DbxUserAccessToken $Scope
34+
}
35+
}
36+
Register-DropboxSdkDotnet @PSBoundParameters

dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/DropboxApiTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,11 @@ public static void ClassInitialize(TestContext context)
8282

8383
userRefreshToken = config["userRefreshToken"];
8484
userAccessToken = config["userAccessToken"];
85+
userAccessToken = "IEpLrb67qJUAAAAAAAAAAWrTH4jck45FxNLIylJkAiIcx9KJUL0mLUsUOm_P_Ky5";
8586
client = new DropboxClient(userAccessToken);
8687

8788
var teamToken = config["teamAccessToken"];
88-
teamClient = new DropboxTeamClient(teamToken);
89+
//teamClient = new DropboxTeamClient(teamToken);
8990

9091
appClient = new DropboxAppClient(appKey, appSecret);
9192
}
@@ -116,7 +117,7 @@ public async Task Initialize()
116117
[TestCleanup]
117118
public void Cleanup()
118119
{
119-
var result = client.Files.ListFolderAsync(TestingPath).Result;
120+
var result = client?.Files.ListFolderAsync(TestingPath).Result;
120121

121122
foreach (var entry in result.Entries)
122123
{

dropbox-sdk-dotnet/Dropbox.Api.Integration.Tests/settings.json.example

-7
This file was deleted.

dropbox-sdk-dotnet/Dropbox.Api.sln

+38-21
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dropbox.Api", "Dropbox.Api\
1616
EndProject
1717
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleBusinessDashboard", "Examples\SimpleBusinessDashboard\SimpleBusinessDashboard.csproj", "{B762DE35-E606-4B57-8860-1A662DF5624C}"
1818
EndProject
19-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dropbox.Api.Integration.Tests", "Dropbox.Api.Integration.Tests\Dropbox.Api.Integration.Tests.csproj", "{0FDF769B-43F8-4907-98D5-A413BD9DE62D}"
19+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dropbox.Api.Integration.Tests", "Dropbox.Api.Integration.Tests\Dropbox.Api.Integration.Tests.csproj", "{0FDF769B-43F8-4907-98D5-A413BD9DE62D}"
2020
EndProject
21-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dropbox.Api.Unit.Tests", "Dropbox.Api.Unit.Tests\Dropbox.Api.Unit.Tests.csproj", "{EECFD4AD-B7DF-4AA7-B067-C6DA4139CB46}"
22-
EndProject
23-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OauthTest", "Examples\OauthBasic\OauthTest.csproj", "{AC53CD8C-710C-4019-8B62-F819F0D6EF38}"
21+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dropbox.Api.Unit.Tests", "Dropbox.Api.Unit.Tests\Dropbox.Api.Unit.Tests.csproj", "{EECFD4AD-B7DF-4AA7-B067-C6DA4139CB46}"
2422
EndProject
2523
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OAuthPKCE", "Examples\OAuthPKCE\OAuthPKCE.csproj", "{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}"
2624
EndProject
@@ -29,11 +27,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2927
.editorconfig = .editorconfig
3028
EndProjectSection
3129
EndProject
30+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OauthBasic", "Examples\OauthBasic\OauthBasic.csproj", "{7839C19C-D817-4D7E-AA66-919042050167}"
31+
EndProject
32+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleTestCore", "Examples\SimpleTestCore\SimpleTestCore.csproj", "{649E39D9-C248-4C81-8486-4EC068DE0FD2}"
33+
EndProject
3234
Global
3335
GlobalSection(SharedMSBuildProjectFiles) = preSolution
3436
Examples\UniversalDemo\UniversalDemo\UniversalDemo.Shared\UniversalDemo.Shared.projitems*{51d9899c-31d6-4c22-b894-e9498cb90577}*SharedItemsImports = 4
3537
Examples\UniversalDemo\UniversalDemo\UniversalDemo.Shared\UniversalDemo.Shared.projitems*{680e8f6f-aa67-4912-ae20-f89e482dc2cd}*SharedItemsImports = 4
36-
Examples\UniversalDemo\UniversalDemo\UniversalDemo.Shared\UniversalDemo.Shared.projitems*{6bcc4215-b726-4b37-a932-4dca74a1d465}*SharedItemsImports = 13
3738
EndGlobalSection
3839
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3940
Debug|Any CPU = Debug|Any CPU
@@ -156,22 +157,6 @@ Global
156157
{EECFD4AD-B7DF-4AA7-B067-C6DA4139CB46}.Release|ARM.ActiveCfg = Release|Any CPU
157158
{EECFD4AD-B7DF-4AA7-B067-C6DA4139CB46}.Release|x64.ActiveCfg = Release|Any CPU
158159
{EECFD4AD-B7DF-4AA7-B067-C6DA4139CB46}.Release|x86.ActiveCfg = Release|Any CPU
159-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
160-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|Any CPU.Build.0 = Debug|Any CPU
161-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|ARM.ActiveCfg = Debug|Any CPU
162-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|ARM.Build.0 = Debug|Any CPU
163-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|x64.ActiveCfg = Debug|Any CPU
164-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|x64.Build.0 = Debug|Any CPU
165-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|x86.ActiveCfg = Debug|Any CPU
166-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Debug|x86.Build.0 = Debug|Any CPU
167-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|Any CPU.ActiveCfg = Release|Any CPU
168-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|Any CPU.Build.0 = Release|Any CPU
169-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|ARM.ActiveCfg = Release|Any CPU
170-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|ARM.Build.0 = Release|Any CPU
171-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|x64.ActiveCfg = Release|Any CPU
172-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|x64.Build.0 = Release|Any CPU
173-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|x86.ActiveCfg = Release|Any CPU
174-
{AC53CD8C-710C-4019-8B62-F819F0D6EF38}.Release|x86.Build.0 = Release|Any CPU
175160
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
176161
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Debug|Any CPU.Build.0 = Debug|Any CPU
177162
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Debug|ARM.ActiveCfg = Debug|Any CPU
@@ -188,6 +173,38 @@ Global
188173
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Release|x64.Build.0 = Release|Any CPU
189174
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Release|x86.ActiveCfg = Release|Any CPU
190175
{1DA8B62F-4AB9-4514-BE94-7D86BA4C130D}.Release|x86.Build.0 = Release|Any CPU
176+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
177+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|Any CPU.Build.0 = Debug|Any CPU
178+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|ARM.ActiveCfg = Debug|Any CPU
179+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|ARM.Build.0 = Debug|Any CPU
180+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|x64.ActiveCfg = Debug|Any CPU
181+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|x64.Build.0 = Debug|Any CPU
182+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|x86.ActiveCfg = Debug|Any CPU
183+
{7839C19C-D817-4D7E-AA66-919042050167}.Debug|x86.Build.0 = Debug|Any CPU
184+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|Any CPU.ActiveCfg = Release|Any CPU
185+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|Any CPU.Build.0 = Release|Any CPU
186+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|ARM.ActiveCfg = Release|Any CPU
187+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|ARM.Build.0 = Release|Any CPU
188+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|x64.ActiveCfg = Release|Any CPU
189+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|x64.Build.0 = Release|Any CPU
190+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|x86.ActiveCfg = Release|Any CPU
191+
{7839C19C-D817-4D7E-AA66-919042050167}.Release|x86.Build.0 = Release|Any CPU
192+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
193+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|Any CPU.Build.0 = Debug|Any CPU
194+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|ARM.ActiveCfg = Debug|Any CPU
195+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|ARM.Build.0 = Debug|Any CPU
196+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|x64.ActiveCfg = Debug|Any CPU
197+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|x64.Build.0 = Debug|Any CPU
198+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|x86.ActiveCfg = Debug|Any CPU
199+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Debug|x86.Build.0 = Debug|Any CPU
200+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|Any CPU.ActiveCfg = Release|Any CPU
201+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|Any CPU.Build.0 = Release|Any CPU
202+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|ARM.ActiveCfg = Release|Any CPU
203+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|ARM.Build.0 = Release|Any CPU
204+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|x64.ActiveCfg = Release|Any CPU
205+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|x64.Build.0 = Release|Any CPU
206+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|x86.ActiveCfg = Release|Any CPU
207+
{649E39D9-C248-4C81-8486-4EC068DE0FD2}.Release|x86.Build.0 = Release|Any CPU
191208
EndGlobalSection
192209
GlobalSection(SolutionProperties) = preSolution
193210
HideSolutionNode = FALSE

dropbox-sdk-dotnet/Dropbox.Api/Dropbox.Api.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66

77
<CodeAnalysisRuleSet>../stylecop.ruleset</CodeAnalysisRuleSet>

dropbox-sdk-dotnet/Examples/OauthBasic/App.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</sectionGroup>
77
</configSections>
88
<startup>
9-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
9+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
1010
</startup>
1111
<userSettings>
1212
<OauthTest.Settings>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net5.0</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<Compile Remove="Properties\AssemblyInfo.cs" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<None Include="Properties\AssemblyInfo.cs" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<PackageReference Include="Dropbox.Api" Version="6.8.0" />
18+
<PackageReference Include="System.configuration.Configurationmanager" Version="5.0.0" />
19+
</ItemGroup>
20+
21+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{AC53CD8C-710C-4019-8B62-F819F0D6EF38}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>OauthTest</RootNamespace>
11+
<AssemblyName>OauthTest</AssemblyName>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<NuGetPackageImportStamp>
15+
</NuGetPackageImportStamp>
16+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
17+
<TargetFrameworkProfile />
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<PlatformTarget>AnyCPU</PlatformTarget>
21+
<DebugSymbols>true</DebugSymbols>
22+
<DebugType>full</DebugType>
23+
<Optimize>false</Optimize>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<ErrorReport>prompt</ErrorReport>
27+
<WarningLevel>4</WarningLevel>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<PlatformTarget>AnyCPU</PlatformTarget>
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DefineConstants>TRACE</DefineConstants>
35+
<ErrorReport>prompt</ErrorReport>
36+
<WarningLevel>4</WarningLevel>
37+
</PropertyGroup>
38+
<ItemGroup>
39+
<Compile Include="Program.cs" />
40+
<Compile Include="Properties\AssemblyInfo.cs" />
41+
<Compile Include="Settings.Designer.cs">
42+
<AutoGen>True</AutoGen>
43+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
44+
<DependentUpon>Settings.settings</DependentUpon>
45+
</Compile>
46+
</ItemGroup>
47+
<ItemGroup>
48+
<None Include="App.config" />
49+
<None Include="packages.config" />
50+
<None Include="Settings.settings">
51+
<Generator>SettingsSingleFileGenerator</Generator>
52+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
53+
</None>
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
57+
<SpecificVersion>False</SpecificVersion>
58+
<HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
59+
</Reference>
60+
<Reference Include="Microsoft.Threading.Tasks.Extensions, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
61+
<SpecificVersion>False</SpecificVersion>
62+
<HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
63+
</Reference>
64+
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop, Version=1.0.168.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
65+
<SpecificVersion>False</SpecificVersion>
66+
<HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
67+
</Reference>
68+
<Reference Include="PresentationCore" />
69+
<Reference Include="PresentationFramework" />
70+
<Reference Include="System" />
71+
<Reference Include="System.Net" />
72+
<Reference Include="System.Net.Http" />
73+
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
74+
<SpecificVersion>False</SpecificVersion>
75+
<HintPath>..\..\packages\Microsoft.Net.Http.2.2.29\lib\net45\System.Net.Http.Extensions.dll</HintPath>
76+
</Reference>
77+
<Reference Include="System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
78+
<SpecificVersion>False</SpecificVersion>
79+
<HintPath>..\..\packages\Microsoft.Net.Http.2.2.29\lib\net45\System.Net.Http.Primitives.dll</HintPath>
80+
</Reference>
81+
<Reference Include="System.Net.Http.WebRequest" />
82+
<Reference Include="System.Xaml" />
83+
<Reference Include="WindowsBase" />
84+
</ItemGroup>
85+
<ItemGroup>
86+
<ProjectReference Include="..\..\Dropbox.Api\Dropbox.Api.csproj">
87+
<Project>{68180b54-4724-4cd1-baa6-ee7bc309797c}</Project>
88+
<Name>Dropbox.Api</Name>
89+
</ProjectReference>
90+
</ItemGroup>
91+
<ItemGroup>
92+
<Content Include="index.html">
93+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
94+
</Content>
95+
</ItemGroup>
96+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97+
<Import Project="..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
98+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
99+
<PropertyGroup>
100+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
101+
</PropertyGroup>
102+
<Error Condition="!Exists('..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
103+
</Target>
104+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105+
Other similar extension points exist, see Microsoft.Common.targets.
106+
<Target Name="BeforeBuild">
107+
</Target>
108+
<Target Name="AfterBuild">
109+
</Target>
110+
-->
111+
</Project>

0 commit comments

Comments
 (0)