Skip to content

Commit 09ba4b0

Browse files
committed
Release 4.9.0.
1 parent e0b4ea9 commit 09ba4b0

File tree

110 files changed

+19
-24827
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+19
-24827
lines changed

buildall.ps1

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ $nugetPath = "$nugetDir\nuget.exe"
1919
$nugetSpecPath = "$sourceDir\Dropbox.Api.nuspec"
2020
$docBuildPath = Resolve-Path "doc\StoneDocs.shfbproj"
2121
$majorVersion = "4.0"
22-
$releaseVersion = "4.8.1"
22+
$releaseVersion = "4.9.1"
2323
$assemblyInfoPath = "$sourceDir\AppProperties\AssemblyInfo.cs"
2424
$signKeyPath = "$sourceDir\dropbox_api_key.snk"
25+
$releaseNotes = @'
26+
What's New:
27+
- Add native support for .Net Standard 2.0.
28+
- Remove unused data types.
29+
'@
2530

2631
$builds = @(
2732
@{Name = "Dropbox.Api"; Configuration="Release"; SignAssembly=$true; TestsName="Dropbox.Api.Tests"},
@@ -194,6 +199,7 @@ function UpdateNugetSpec()
194199
Write-Host "Updating nuspec file..."
195200
$xml = [xml](Get-Content $nugetSpecPath)
196201
$xml.SelectNodes('/package/metadata/version')[0].InnerXml = $releaseVersion
202+
$xml.SelectNodes('/package/metadata/releaseNotes')[0].InnerXml = "`n" + $releaseNotes + "`n "
197203
$xml.Save($nugetSpecPath)
198204
}
199205

dropbox-sdk-dotnet/Dropbox.Api/AppProperties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[assembly: AssemblyCulture("")]
1919

2020
[assembly: AssemblyVersion("4.0.0")]
21-
[assembly: AssemblyFileVersion("4.0.6718")]
21+
[assembly: AssemblyFileVersion("4.0.6759")]
2222

2323
#if DEBUG
2424
[assembly: InternalsVisibleTo("Dropbox.Api.Tests")]

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
1515
<RestorePackages>true</RestorePackages>
16+
<BaseIntermediateOutputPath>docobj\</BaseIntermediateOutputPath>
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>true</DebugSymbols>
1920
<DebugType>full</DebugType>
2021
<Optimize>false</Optimize>
2122
<OutputPath>docbin\Debug\</OutputPath>
22-
<IntermediateOutputPath>docobj\Debug\</IntermediateOutputPath>
2323
<DefineConstants>TRACE;DEBUG;DOC</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
@@ -30,7 +30,6 @@
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>docbin\Release\</OutputPath>
33-
<IntermediateOutputPath>docobj\Release\</IntermediateOutputPath>
3433
<DefineConstants>TRACE;DOC</DefineConstants>
3534
<ErrorReport>prompt</ErrorReport>
3635
<WarningLevel>4</WarningLevel>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
<FileAlignment>512</FileAlignment>
1515
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1616
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
17+
<BaseIntermediateOutputPath>portableobj\</BaseIntermediateOutputPath>
1718
</PropertyGroup>
1819
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1920
<DebugSymbols>true</DebugSymbols>
2021
<DebugType>full</DebugType>
2122
<Optimize>false</Optimize>
2223
<OutputPath>bin\Debug\portable</OutputPath>
23-
<IntermediateOutputPath>obj\Debug\portable</IntermediateOutputPath>
2424
<DefineConstants>DEBUG;TRACE;PORTABLE</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
@@ -33,7 +33,6 @@
3333
<DebugType>pdbonly</DebugType>
3434
<Optimize>true</Optimize>
3535
<OutputPath>bin\Release\portable</OutputPath>
36-
<IntermediateOutputPath>obj\Release\portable</IntermediateOutputPath>
3736
<DefineConstants>TRACE;PORTABLE</DefineConstants>
3837
<ErrorReport>prompt</ErrorReport>
3938
<WarningLevel>4</WarningLevel>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
<FileAlignment>512</FileAlignment>
1515
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1616
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
17+
<BaseIntermediateOutputPath>portable40obj\</BaseIntermediateOutputPath>
1718
</PropertyGroup>
1819
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1920
<DebugSymbols>true</DebugSymbols>
2021
<DebugType>full</DebugType>
2122
<Optimize>false</Optimize>
2223
<OutputPath>bin\Debug\portable40</OutputPath>
23-
<IntermediateOutputPath>obj\Debug\portable40</IntermediateOutputPath>
2424
<DefineConstants>DEBUG;TRACE;PORTABLE40</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
@@ -33,7 +33,6 @@
3333
<DebugType>pdbonly</DebugType>
3434
<Optimize>true</Optimize>
3535
<OutputPath>bin\Release\portable40</OutputPath>
36-
<IntermediateOutputPath>obj\Release\portable40</IntermediateOutputPath>
3736
<DefineConstants>TRACE;PORTABLE40</DefineConstants>
3837
<ErrorReport>prompt</ErrorReport>
3938
<WarningLevel>4</WarningLevel>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
<AssemblyName>Dropbox.Api</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<BaseIntermediateOutputPath>net45obj\</BaseIntermediateOutputPath>
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>
1718
<DebugType>full</DebugType>
1819
<Optimize>false</Optimize>
1920
<OutputPath>bin\Debug\net45</OutputPath>
20-
<IntermediateOutputPath>obj\Debug\net45</IntermediateOutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
@@ -30,7 +30,6 @@
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>bin\Release\net45</OutputPath>
33-
<IntermediateOutputPath>obj\Release\net45</IntermediateOutputPath>
3433
<DefineConstants>TRACE</DefineConstants>
3534
<ErrorReport>prompt</ErrorReport>
3635
<WarningLevel>4</WarningLevel>

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

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Dropbox.Api</id>
5-
<version>4.8.1</version>
5+
<version>4.9.0</version>
66
<title>Dropbox v2 API</title>
77
<authors>Dropbox Inc</authors>
88
<owners>Dropbox Inc</owners>
@@ -11,15 +11,11 @@
1111
<iconUrl>https://cf.dropboxstatic.com/static/images/icons/blue_dropbox_glyph.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>Portable class library for accessing the Dropbox v2 API</description>
14-
<releaseNotes>
14+
<releaseNotes>
1515
What's New:
16-
- Files:
17-
- added new TooLarge error type for uploads
18-
19-
- Team:
20-
- add is_directory_restricted attribute to MemberProfile, MemberAddArg
21-
- add new_is_directory_restricted to MemberSetProfileArg
22-
</releaseNotes>
16+
- Add native support for .Net Standard 2.0.
17+
- Remove unused data types.
18+
</releaseNotes>
2319
<copyright>Copyright (c) Dropbox Inc. 2016</copyright>
2420
<tags>Dropbox Api</tags>
2521
<dependencies>

dropbox-sdk-dotnet/Dropbox.Api/Generated/Common/InvalidPathRootError.cs

Lines changed: 0 additions & 128 deletions
This file was deleted.

0 commit comments

Comments
 (0)