-
Notifications
You must be signed in to change notification settings - Fork 40
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
setup for .net47 #81
setup for .net47 #81
Conversation
Razorpay.nuspec
Outdated
@@ -15,10 +15,12 @@ | |||
<tags>Razorpay</tags> | |||
<dependencies> | |||
<dependency id="Newtonsoft.Json" version="11.0.2" /> | |||
<dependency id="Newtonsoft.Json" version="13.0.3" /> |
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.
Fix the Indentation.
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.
I believe there is a better way for handling multiple versions of the same assembly.
Refer this - https://learn.microsoft.com/en-us/dotnet/framework/configure-apps/redirect-assembly-versions
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.
net47/Properties/AssemblyInfo.cs
Outdated
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Razorpay Software Private Limited")] | ||
[assembly: AssemblyProduct("Razorpay.API")] | ||
[assembly: AssemblyCopyright("Copyright © 2015")] |
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.
CopyRight should have current year also right?
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.
changed to 2023
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.
Should it be 2015-2023?
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.
Also added in nuspec
file
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
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.
Add Empty line
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.
Done
net47/packages.config
Outdated
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net47" /> | ||
</packages> |
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.
Add Empty line
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.
Done
Razorpay.nuspec
Outdated
@@ -14,11 +14,12 @@ | |||
<copyright>Copyright 2015</copyright> | |||
<tags>Razorpay</tags> | |||
<dependencies> | |||
<dependency id="Newtonsoft.Json" version="11.0.2" /> | |||
<dependency id="Newtonsoft.Json" version="[11.0.2,13.0.3)" /> |
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.
closing Brackets are not same. Please test
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.
Added Support for .net 47