-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add Directory.Build.props. #2120
base: master
Are you sure you want to change the base?
Conversation
Directory.Build.props
Outdated
<NuGetAuditMode>all</NuGetAuditMode> | ||
<NuGetAudit>true</NuGetAudit> | ||
<NuGetAuditLevel>low</NuGetAuditLevel> | ||
<AnalysisLevel>latest-Recommended</AnalysisLevel> |
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.
In my IDE, the latest-Recommended value causes hundreds of syntax errors.
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.
<RepositoryUrl>https://github.com/dotnet/MQTTnet.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
|
||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
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.
After enabling ContinuousIntegrationBuild, it affects the lower breakpoint of the upper-level project in Debug configuration. Can we add a condition here to enable it only in Release configuration?
… ContinuousIntegrationBuild.
I added a Directory.Build.props file to the solution and moved the common PropertyGroups and ItemGroups in each project into this file.