Skip to content

Commit 03c0b67

Browse files
Merge pull request #177 from microsoftgraph/dev
Update master with dev changes - JSON dependency update
2 parents 45b2209 + 076e57f commit 03c0b67

File tree

4 files changed

+33
-22
lines changed

4 files changed

+33
-22
lines changed

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

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@
33
<Description>Microsoft Graph Core Client Library implements core functionality used by Microsoft Graph Client Libraries.</Description>
44
<Copyright>Copyright (c) Microsoft Corporation</Copyright>
55
<AssemblyTitle>Microsoft Graph Core Client Library</AssemblyTitle>
6-
<VersionPrefix>1.5.0</VersionPrefix>
7-
<FileVersion>1.5.0</FileVersion>
8-
<AssemblyVersion>1.5.0</AssemblyVersion>
6+
<VersionPrefix>1.6.1</VersionPrefix>
7+
<FileVersion>1.6.1</FileVersion>
8+
<AssemblyVersion>1.6.1</AssemblyVersion>
99
<Authors>Microsoft</Authors>
1010
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
1111
<PreserveCompilationContext>false</PreserveCompilationContext>
1212
<AssemblyName>Microsoft.Graph.Core</AssemblyName>
1313
<PackageId>Microsoft.Graph.Core</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
August 2017 Release Summary (version 1.6.0)
16+
August 2017.1 Release Summary (version 1.6.1)
1717

18-
New Features
19-
* Added Intellisense file to package</PackageReleaseNotes>
18+
New Features for 1.6.0
19+
* Added Intellisense file to package
20+
21+
New Features for 1.6.1
22+
* Updated Newtonsoft JSON.Net dependency to use all version up to 11.
23+
</PackageReleaseNotes>
2024
<PackageProjectUrl>https://graph.microsoft.io</PackageProjectUrl>
2125
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
2226
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -35,10 +39,11 @@
3539
<DelaySign>True</DelaySign>
3640
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
3741
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
38-
<Version>1.6.0</Version>
42+
<Version>1.6.1</Version>
3943
</PropertyGroup>
4044
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4145
<DocumentationFile>bin\Release\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>
46+
<NoWarn>1701;1702;1705;1591</NoWarn>
4247
</PropertyGroup>
4348
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.1|AnyCPU'">
4449
<DocumentationFile>bin\Debug\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>
@@ -54,9 +59,9 @@
5459
<Reference Include="System.Net.Http" />
5560
<Reference Include="System" />
5661
<Reference Include="Microsoft.CSharp" />
57-
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,10.0.2]" />
62+
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,11)" />
5863
</ItemGroup>
5964
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
60-
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,10.0.2]" />
65+
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,11)" />
6166
</ItemGroup>
6267
</Project>

src/Microsoft.Graph.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//
2525
// You can specify all the values or you can default the Build and Revision Numbers
2626
// by using the '*' as shown below:
27-
[assembly: AssemblyVersion("1.6.0")]
28-
[assembly: AssemblyFileVersion("1.6.0.0")]
27+
[assembly: AssemblyVersion("1.6.1")]
28+
[assembly: AssemblyFileVersion("1.6.1.0")]
2929

3030
#if DEBUG
3131
[assembly: InternalsVisibleTo("Microsoft.Graph.Core.Test")]

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,26 @@
44
<Description>Microsoft Graph Client Library allows you to call Office 365, Azure AD and other Microsoft services through a single unified developer experience.</Description>
55
<Copyright>Copyright (c) Microsoft Corporation</Copyright>
66
<AssemblyTitle>Microsoft Graph Client Library</AssemblyTitle>
7-
<VersionPrefix>1.4.0</VersionPrefix>
8-
<FileVersion>1.4.0</FileVersion>
9-
<AssemblyVersion>1.4.0</AssemblyVersion>
7+
<VersionPrefix>1.5.1</VersionPrefix>
8+
<FileVersion>1.5.1</FileVersion>
9+
<AssemblyVersion>1.5.1</AssemblyVersion>
1010
<Authors>Microsoft</Authors>
1111
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
1212
<PreserveCompilationContext>false</PreserveCompilationContext>
1313
<AssemblyName>Microsoft.Graph</AssemblyName>
1414
<PackageId>Microsoft.Graph</PackageId>
1515
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;SDK</PackageTags>
16-
<PackageReleaseNotes>August 2017 Release Summary (version 1.5.0)
16+
<PackageReleaseNotes>
17+
August 2017.1 Release Summary (version 1.5.1)
1718

18-
New features
19+
New features for 1.5.0
1920
* Access OneNote notebooks through SharePoint
2021
* New Groups functionality
21-
* Added Intellisense file</PackageReleaseNotes>
22+
* Added Intellisense file
23+
24+
New features for 1.5.1
25+
* Updated Newtonsoft JSON.Net dependency to use all version up to 11.
26+
</PackageReleaseNotes>
2227
<PackageProjectUrl>https://graph.microsoft.io</PackageProjectUrl>
2328
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
2429
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -37,11 +42,12 @@
3742
<DelaySign>True</DelaySign>
3843
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
3944
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
40-
<Version>1.5.0</Version>
45+
<Version>1.5.1</Version>
4146
</PropertyGroup>
4247

4348
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4449
<DocumentationFile>bin\Release\Microsoft.Graph.xml</DocumentationFile>
50+
<NoWarn>1701;1702;1705;1591</NoWarn>
4551
</PropertyGroup>
4652

4753
<ItemGroup>
@@ -56,9 +62,9 @@
5662
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
5763
<Reference Include="System" />
5864
<Reference Include="Microsoft.CSharp" />
59-
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,10.0.2]" />
65+
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,11)" />
6066
</ItemGroup>
6167
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
62-
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,10.0.2]" />
68+
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,11)" />
6369
</ItemGroup>
6470
</Project>

src/Microsoft.Graph/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//
2525
// You can specify all the values or you can default the Build and Revision Numbers
2626
// by using the '*' as shown below:
27-
[assembly: AssemblyVersion("1.5.0")]
28-
[assembly: AssemblyFileVersion("1.5.0.0")]
27+
[assembly: AssemblyVersion("1.5.1")]
28+
[assembly: AssemblyFileVersion("1.5.1.0")]
2929

3030
#if DEBUG
3131
[assembly: InternalsVisibleTo("Microsoft.Graph.Test")]

0 commit comments

Comments
 (0)