-
Notifications
You must be signed in to change notification settings - Fork 173
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
Added support for IsPublishable C# project config item #144
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.
Thanks for the contribution! Couple of minors changes to do, otherwise looks good!
@@ -546,6 +546,16 @@ public enum SonarQubeExclude | |||
Disabled, | |||
Enabled | |||
} | |||
|
|||
/// <summary> | |||
/// Controls whether the project is published when running a publish command |
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.
Seems this property is only applicable for dotnet sdk projects, could you indicate that in the comments please?
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.
Thanks. Done!
@@ -3426,6 +3426,13 @@ private Options.ExplicitOptions GenerateOptions(CSharpProject project, Project.C | |||
Options.Option(Options.CSharp.ProduceReferenceAssembly.Disabled, () => { options["ProduceReferenceAssembly"] = RemoveLineTag; }) | |||
); | |||
|
|||
|
|||
SelectOption | |||
( |
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 indentation (we use spaces)
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, some slipped through. Fixed
Also added comment to indicate that IsPublishable only affects dotnet projects
Merged, thanks! |
* Added support for IsPublishable C# project config item
* Added support for IsPublishable C# project config item
Make Samples compile to ease code navigation Closes #144 See merge request Sharpmake/sharpmake!364
No description provided.