Microsoft.BingAds.SDK 9.3.4-beta

This is a prerelease version of Microsoft.BingAds.SDK.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.BingAds.SDK --version 9.3.4-beta
                    
NuGet\Install-Package Microsoft.BingAds.SDK -Version 9.3.4-beta
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.BingAds.SDK" Version="9.3.4-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.BingAds.SDK" Version="9.3.4-beta" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.BingAds.SDK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.BingAds.SDK --version 9.3.4-beta
                    
#r "nuget: Microsoft.BingAds.SDK, 9.3.4-beta"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.BingAds.SDK@9.3.4-beta
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.BingAds.SDK&version=9.3.4-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.BingAds.SDK&version=9.3.4-beta&prerelease
                    
Install as a Cake Tool

The Bing Ads SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.3.7 435 4/29/2015
9.3.6 296 2/19/2015
9.3.4-beta 395 10/15/2014
9.3.3-beta 82 10/3/2014

- Fixed issues with setting common request fields from the AuthorizationData. Now if a request field has been set to a non-default value, it won't be overwritten by the AuthorizationData values.

- Added the WorkingDirectory property to the BulkServiceManager. It allows to specify a directory for temporary files created by some operations, for example a temporary upload file when uploading entities or a compressed upload file when compression is enabled. The default value is "%temp%\BingAdsSDK".

- Added the CompressUploadFile property to the SubmitUploadParameters and FileUploadParameters. When set to True, the upload file will be compressed into the WorkingDirectory before uploading (unless the file has a ".zip" extension already). The default value is True.

- Added the ReadNextEntity method to the BulkFileReader, which reads the next entity from the bulk file.

- Added a constructor to the BulkFileWriter allowing to specify the bulk file format (Csv or Tsv). Another constructor that doesn't have this parameter defaults it to Csv.

- Exposed the AuthorizationData property from the ServiceClient.