Andrew Truckle
Andrew Truckle

Reputation: 19117

Upgrading Microsoft Graph to v1.7.0

I notice there is a new version of Microsoft Graph (v1.7.0):

Microsoft Graph

I am using v1.6.2. How do I know what code changes (if any) will be required in my application and / or any DLL deplyment changes for it to work on clients computers?

Apart from simply upgrading and compiling and trial and error?

Thanks.

Upvotes: 1

Views: 62

Answers (1)

baywet
baywet

Reputation: 5342

The dot net SDK follows semver. Which means a minor version upgrade will include new features but no breaking change which would require your code to be updated. To know what's new in this version and if any action is required from you besides upgrading you can check the release notes.

Upvotes: 2

Related Questions