Skip to content

Commit d8b7241

Browse files
Merge branch 'mongodb:main' into VS-153
2 parents f125228 + 571143f commit d8b7241

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

Diff for: CONTRIBUTING.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Contributing to the MongoDB .NET Analyzer
2+
3+
### Bugfixes
4+
5+
- Before starting to write code, look for existing [tickets](https://jira.mongodb.org/browse/VS#selectedTab=com.atlassian.jira.plugin.system.project%3Asummary-panel) or create one for your specific issue. That way you avoid working on something that might not be of interest or that has been addressed already in a different branch.
6+
- Fork the [repo](https://github.com/mongodb/mongo-csharp-analyzer).
7+
- Ensure your core.autocrlf settings are set to true.
8+
- Follow the general coding style of the rest of the project.
9+
- Write tests and make sure they pass.
10+
- Your final commit should have the JIRA issue number as the first part of the commit message.
11+
- Submit a pull request from GitHub.

Diff for: README.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ Feedback/Bug Reports
2020
* [MongoDB Community Forum](https://www.mongodb.com/community/forums/tag/dot-net)
2121

2222
If you’ve identified a security vulnerability in the analyzer or any other MongoDB project, please report it according to the [instructions here](http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report).
23+
24+
Contributing
25+
------------
26+
27+
Please see our [guidelines](CONTRIBUTING.md) for contributing to this project.
28+
29+
Thank you to [everyone](https://github.com/mongodb/mongo-csharp-analyzer/graphs/contributors) who has contributed to this project.

Diff for: packageIcon.png

-23.9 KB
Loading

Diff for: src/MongoDB.Analyzer.Package/MongoDB.Analyzer.Package.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
<PackageIcon>packageIcon.png</PackageIcon>
1717
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1818
<PackageProjectUrl>https://www.mongodb.com/docs/mongodb-analyzer/current/</PackageProjectUrl>
19-
<RepositoryUrl>https://github.com/mongodb/mongo-csharp-analyzer</RepositoryUrl>
19+
<PackageReadmeFile>README.md</PackageReadmeFile>
2020
<PackageReleaseNotes>https://github.com/mongodb/mongo-csharp-analyzer/releases/tag/v$(Version)</PackageReleaseNotes>
21+
<RepositoryUrl>https://github.com/mongodb/mongo-csharp-analyzer</RepositoryUrl>
2122
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2223
<Description>MongoDB Roslyn analyzer for MongoDB .Net driver.</Description>
2324
<Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
@@ -33,6 +34,7 @@
3334

3435
<ItemGroup>
3536
<None Include="..\..\packageIcon.png" Pack="true" PackagePath="" />
37+
<None Include="..\..\README.md" Pack="true" PackagePath="" />
3638
</ItemGroup>
3739

3840
<ItemGroup>

0 commit comments

Comments
 (0)