Skip to content

Commit

Permalink
v3.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Willer committed Sep 4, 2018
1 parent 5800ee9 commit 8996e40
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Box.V2.Core/Box.V2.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<Description>Box.V2 for .Net Core</Description>
<AssemblyTitle>Box.V2.Core</AssemblyTitle>
<Version>3.9.2</Version>
<Version>3.9.3</Version>
<Authors>Box, Inc.</Authors>
<Owners>Box, Inc.</Owners>
<PackageProjectUrl>https://github.com/box/box-windows-sdk-v2</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageDescription>Windows SDK for v2 of the Box API. The SDK is built for .NET Core and includes JWTAuth support.</PackageDescription>
<PackageReleaseNotes>Added support for setting a flag allowing non owners of a folder to invite collaborators.</PackageReleaseNotes>
<PackageReleaseNotes>N/A</PackageReleaseNotes>
<Copyright>Copyright 2018</Copyright>
<PackageTags>Box;V2;SDK;Platform;Enterprise;Collaboration;Storage;File Management</PackageTags>
<TargetFramework>netstandard1.6</TargetFramework>
Expand All @@ -20,6 +20,9 @@
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>BoxSDKKey (1).pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
7 changes: 7 additions & 0 deletions Box.V2/Box.V2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>BoxSDKKey %281%29.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942">
<HintPath>..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll</HintPath>
Expand Down Expand Up @@ -249,6 +255,7 @@
<None Include="Box.V2.nuspec">
<SubType>Designer</SubType>
</None>
<None Include="BoxSDKKey %281%29.pfx" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
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>3.9.2</version>
<version>3.9.3</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 targeting .NET Framework 4.5</description>
<releaseNotes>Added support for setting a flag allowing non owners of a folder to invite collaborators.</releaseNotes>
<releaseNotes>Strong named the assembly.</releaseNotes>
<copyright>Copyright 2018</copyright>
<tags>Box V2 SDK Platform Enterprise Collaboration Storage File Management</tags>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion Box.V2/Utility/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ internal class AssemblyInfo
public const string AssemblyTitle = "Box.V2";
public const string AssemblyProduct = "Box.V2";

public const string NuGetVersion = "3.9.2";
public const string NuGetVersion = "3.9.3";
public const string AssemblyVersion = "1.0.0.0";
public const string AssemblyFileVersion = "1.0.0.0";
}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.9.3

- Strong named the assembly.

## 3.9.2
- Added support for [setting flag](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Models/Request/BoxFolderRequest.cs#L39) allowing non owners of a folder to invite collaborators.

Expand Down

0 comments on commit 8996e40

Please sign in to comment.