Skip to content

Commit

Permalink
Merge pull request #339 from box/jwt-132
Browse files Browse the repository at this point in the history
Fixed the version binding under azure functions
  • Loading branch information
coolboy authored May 25, 2017
2 parents 8c37785 + 3ba00fc commit a8d7042
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Box.V2.JWTAuth/Box.V2.JWTAuth.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package >
<metadata>
<id>Box.V2.JWTAuth</id>
<version>1.3.1</version>
<version>1.3.3</version>
<title>JWT Auth for Box Windows SDK V2</title>
<authors>Box, Inc.</authors>
<owners>Box, Inc.</owners>
<projectUrl>https://github.com/box/box-windows-sdk-v2</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Support library that provides JWT authentication for Box Windows SDK V2. Requires Box Windows SDK V2 2.3.0 or higher.</description>
<releaseNotes>Support private key in json. Support initialize without private key.</releaseNotes>
<releaseNotes>Updated Box.V2 reference version.</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Box V2 SDK Collaboration Storage File Management JWT AppUsers</tags>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Box.V2.JWTAuth/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Box.V2.JWTAuth")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
4 changes: 2 additions & 2 deletions Box.V2/Box.V2.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package >
<metadata>
<id>Box.V2</id>
<version>2.15.5</version>
<version>2.15.6</version>
<title>Box Windows SDK V2</title>
<authors>Box, Inc.</authors>
<owners>Box, Inc.</owners>
<projectUrl>https://github.com/box/box-windows-sdk-v2</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Windows SDK for v2 of the Box API. The SDK is built upon the Portable Class Library and targets the following frameworks: .NET for Windows Store apps, .NET Framework 4.0, Silverlight 4 and higher, Windows Phone 7.5 and higher</description>
<releaseNotes>ListParts is ready. Download supports range. JWT is working under Azure Function. Upload file with name already exist will have it's own exception.</releaseNotes>
<releaseNotes>Revert back the file version.</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Box V2 SDK Platform Enterprise Collaboration Storage File Management</tags>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Box.V2/Config/BoxConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Box.V2.Config
{
public class BoxConfig : IBoxConfig
{
private static string DefaultUserAgent = "Box Windows SDK v" + AssemblyInfo.AssemblyVersion;
private static string DefaultUserAgent = "Box Windows SDK v" + AssemblyInfo.NuGetVersion;

/// <summary>
/// Instantiates a Box config with all of the standard defaults
Expand Down
9 changes: 4 additions & 5 deletions Box.V2/Utility/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
using System;

namespace Box.V2.Utility
namespace Box.V2.Utility
{
internal class AssemblyInfo
{
public const string AssemblyTitle = "Box.V2";
public const string AssemblyProduct = "Box.V2";

public const string AssemblyVersion = "2.15.5.0";
public const string AssemblyFileVersion = "2.15.5.0";
public const string NuGetVersion = "2.15.6";
public const string AssemblyVersion = "1.0.0.0";
public const string AssemblyFileVersion = "1.0.0.0";
}
}

0 comments on commit a8d7042

Please sign in to comment.