-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update recommendation engine APIs along with resource property fix, add new APIs #4101
Conversation
…rget (Azure#4098) * Update generated files using specs from latest public preview swagger. * Fix tests. * Changes: - Regenerate models to include commit id. - Update minor version number. * Add generated AzSdk.RP.props * Change version number to 0.2.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please pull down the latest changes and run:
- msbuild build.proj /t:build /p:Scope=SDKs\Monitor
generate.cmd to generate the code - These steps should generate the .props and .txt files, you need to commit these files
@@ -18,5 +18,5 @@ | |||
|
|||
[assembly: Guid("4c6e3586-2ebd-4b86-b46e-6850c1f5226e")] | |||
|
|||
[assembly: AssemblyVersion("2.0.0.0")] | |||
[assembly: AssemblyFileVersion("2.0.0.0")] | |||
[assembly: AssemblyVersion("2.0.0.1")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently, the released package version is 1.7.1-preview
and the assembly version here is 2.0.0.0
please update the csproj
with the new version number 2.0.0-preview
and undo these changes in AssemblyInfo.cs
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there are two separate projects being modified in this PR Microsoft.DataMigration
and Microsoft.Websites
. The PR linked in description has changes related to the spec for Microsoft.Websites
only, what was the intention behind making changes to two different projects here?
@@ -7,8 +7,8 @@ | |||
[assembly: AssemblyTitle("Microsoft Azure Data Migration Management Library")] | |||
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Migration Resources.")] | |||
|
|||
[assembly: AssemblyVersion("0.1.2")] | |||
[assembly: AssemblyFileVersion("0.1.2")] | |||
[assembly: AssemblyVersion("0.2.0")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, you don't need to update the assembly version here unless its a major version change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah it was merged when I did git pull from Azure/azure-sdk-for-net. Sorry for confusion.
@@ -4,7 +4,7 @@ | |||
<PackageId>WebSites.Tests</PackageId> | |||
<Description>Websites.Tests Class Library</Description> | |||
<AssemblyName>WebSites.Tests</AssemblyName> | |||
<VersionPrefix>1.0.0-preview</VersionPrefix> | |||
<VersionPrefix>2.0.0-preview</VersionPrefix> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this is not necessary since we don't publish the tests as such
@shahabhijeet FYI |
Closing the PR as per discussion with Deepak |
Description
This checklist is used to make sure that common guidelines for a pull request are followed.
General Guidelines
Testing Guidelines
SDK Generation Guidelines
*.csproj
andAssemblyInfo.cs
files have been updated with the new version of the SDK.