Skip to content

Commit c3beb1c

Browse files
committed
Updated version, release summary, and address issue #280
1 parent 80f4c0a commit c3beb1c

File tree

4 files changed

+22
-21
lines changed

4 files changed

+22
-21
lines changed

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

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,21 @@
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.9.0</VersionPrefix>
7-
<FileVersion>1.9.0</FileVersion>
8-
<AssemblyVersion>1.9.0</AssemblyVersion>
6+
<VersionPrefix>1.10.0</VersionPrefix>
7+
<FileVersion>1.10.0</FileVersion>
8+
<AssemblyVersion>1.10.0</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;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
May 2018 Release Summary (version 1.9.0)
16+
July 2018 Release Summary (version 1.10.0)
1717

1818
New features
19-
- Added more comments.
20-
- Added response headers and status to all calls that return a non-stream object.
21-
- Added SerializeObject method to MockSerializer.
19+
- Added the ability to append an arbitrary URL segment to a request. This will support the creation of custom requests.
20+
- Set signing properties in .csproj to be 'false' by default.
2221
</PackageReleaseNotes>
2322
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
2423
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -38,7 +37,7 @@ New features
3837
<DelaySign>false</DelaySign>
3938
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
4039
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
41-
<Version>1.9.0</Version>
40+
<Version>1.10.0</Version>
4241
</PropertyGroup>
4342
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4443
<DocumentationFile>bin\Release\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>

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.9.0")]
28-
[assembly: AssemblyFileVersion("1.9.0.0")]
27+
[assembly: AssemblyVersion("1.10.0")]
28+
[assembly: AssemblyFileVersion("1.10.0.0")]
2929

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

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
<Description>Microsoft Graph Client Library allows you to call Office 365, Azure AD and other Microsoft services through a single unified developer experience.</Description>
44
<Copyright>Copyright (c) Microsoft Corporation</Copyright>
55
<AssemblyTitle>Microsoft Graph Client Library</AssemblyTitle>
6-
<VersionPrefix>1.9.1</VersionPrefix>
7-
<FileVersion>1.9.1</FileVersion>
8-
<AssemblyVersion>1.9.1</AssemblyVersion>
6+
<VersionPrefix>1.10.0</VersionPrefix>
7+
<FileVersion>1.10.0</FileVersion>
8+
<AssemblyVersion>1.10.0</AssemblyVersion>
99
<Authors>Microsoft</Authors>
1010
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
1111
<PreserveCompilationContext>false</PreserveCompilationContext>
1212
<AssemblyName>Microsoft.Graph</AssemblyName>
1313
<PackageId>Microsoft.Graph</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
June 2018 Release Summary (version 1.9.1)
17-
18-
- Updated reference to System.Net.Http to address vulnerability.
19-
16+
July 2018 Release Summary (version 1.10.0)
2017

18+
- Updated reference to System.Net.Http to address a vulnerability and issue with .Net &gt;=4.7.2.
19+
- Set signing properties in .csproj to be 'false' by default.
20+
- Added custom request builders that help add user activity and history.
2121
</PackageReleaseNotes>
2222
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
2323
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -37,7 +37,7 @@ June 2018 Release Summary (version 1.9.1)
3737
<DelaySign>false</DelaySign>
3838
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
3939
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
40-
<Version>1.9.1</Version>
40+
<Version>1.10.0</Version>
4141
</PropertyGroup>
4242
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4343
<DocumentationFile>bin\Release\Microsoft.Graph.xml</DocumentationFile>
@@ -47,7 +47,9 @@ June 2018 Release Summary (version 1.9.1)
4747
<ProjectReference Include="..\Microsoft.Graph.Core\Microsoft.Graph.Core.csproj" />
4848
</ItemGroup>
4949
<ItemGroup>
50-
<PackageReference Include="System.Net.Http" Version="4.3.3" />
50+
<PackageReference Include="System.Net.Http" Version="4.3.3">
51+
<ExcludeAssets>All</ExcludeAssets>
52+
</PackageReference>
5153
</ItemGroup>
5254
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
5355
<Reference Include="System" />

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.9.1")]
28-
[assembly: AssemblyFileVersion("1.9.1.0")]
27+
[assembly: AssemblyVersion("1.10.0")]
28+
[assembly: AssemblyFileVersion("1.10.0.0")]
2929

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

0 commit comments

Comments
 (0)