-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Updating .net sdk from latest api version #3932
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
Updating .net sdk from latest api version #3932
Conversation
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.
Can you pull latest from upstream and use generate.cmd to generate the SDK. Missing couple of files that are generated.
Also you will have to update the package version in csproj in order to publish
|
Pulled latest from upstream, it is already up to date. Regenerated code which generated 2 more files. Checking them in. |
| [assembly: AssemblyVersion("4.0.0.0")] | ||
| [assembly: AssemblyFileVersion("4.3.0.0")] | ||
| //[assembly: AssemblyVersion("4.0.0.0")] | ||
| //[assembly: AssemblyFileVersion("4.3.0.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.
@SiddharthChatrolaMs any reason these attributes are commented.
If you have not pulled latest from upstream, please do and also run the following from the root
msbuild build.proj (this will pull the latest build tools)
then do
msbuild build.proj /t:Build /p:Scope=SDKs\RedisCache
this will ensure two things:
- the duplicate attribute errors will be gone
- will update the package meta data for API version for your nuget package.
| <Version>4.4.0</Version> | ||
| <AssemblyName>Microsoft.Azure.Management.Redis</AssemblyName> | ||
| <PackageTags>Microsoft Azure Redis Cache management;Redis Management;</PackageTags> | ||
| <PackageReleaseNotes/> |
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.
Missing package release notes for this release. If this release has lot of new features, this will be a good time to document all those new features in the release, so that users see what is included in the nuget package.
Description
This checklist is used to make sure that common guidelines for a pull request are followed.
General Guidelines
Testing Guidelines
SDK Generation Guidelines
*.csprojandAssemblyInfo.csfiles have been updated with the new version of the SDK.