Skip to content

Commit 68eb7b2

Browse files
committed
Fixes #345 - removed upper bounds on the Newtosoft.Json package reference.
1 parent 019dadb commit 68eb7b2

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
<PackageId>Microsoft.Graph.Core</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
December 2018 Release Summary (version 1.13.0)
16+
January 2019 Release Summary (version 1.13.0-preview.2)
1717

1818
- Authentication handler added.
19+
- Removed Newtonsoft.Json package reference upper bound limitation.
1920
</PackageReleaseNotes>
2021
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
2122
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -35,7 +36,7 @@ December 2018 Release Summary (version 1.13.0)
3536
<DelaySign>false</DelaySign>
3637
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
3738
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
38-
<Version>1.13.0-preview</Version>
39+
<Version>1.13.0-preview.2</Version>
3940
</PropertyGroup>
4041
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4142
<DocumentationFile>bin\Release\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>
@@ -54,7 +55,7 @@ December 2018 Release Summary (version 1.13.0)
5455
<Reference Include="System.Net.Http" />
5556
<Reference Include="System" />
5657
<Reference Include="Microsoft.CSharp" />
57-
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,12)" />
58+
<PackageReference Include="Newtonsoft.Json" Version="6.0.1" />
5859
</ItemGroup>
5960
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
6061
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageId>Microsoft.Graph</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
December 2018 Release Summary (version 1.13.0)
16+
January 2019 Release Summary (version 1.13.0-preview.2)
1717

1818
New functionality
1919
- Added new Teams API functionality.
@@ -25,6 +25,7 @@ Updated functionality
2525
- Device is updated with the MemberOf relationship.
2626
- Group is updated with the isArchived property and Team relationship.
2727
- User is updated with the JoinedTeams relationship.
28+
- Removed Newtonsoft.Json package reference upper bound limitation.
2829
</PackageReleaseNotes>
2930
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
3031
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -44,7 +45,7 @@ Updated functionality
4445
<DelaySign>false</DelaySign>
4546
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
4647
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
47-
<Version>1.13.0-preview</Version>
48+
<Version>1.13.0-preview.2</Version>
4849
</PropertyGroup>
4950
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
5051
<DocumentationFile>bin\Release\Microsoft.Graph.xml</DocumentationFile>
@@ -57,7 +58,7 @@ Updated functionality
5758
<Reference Include="System" />
5859
<Reference Include="System.Net.Http" />
5960
<Reference Include="Microsoft.CSharp" />
60-
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,12)" />
61+
<PackageReference Include="Newtonsoft.Json" Version="6.0.1" />
6162
</ItemGroup>
6263
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
6364
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />

0 commit comments

Comments
 (0)