Skip to content

Commit 0e91017

Browse files
authored
Update donations (#1582)
1 parent 25261a3 commit 0e91017

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

Donations.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# List of Donations
22

3-
### Recurring Donations
3+
### Special Donations
44

5-
| Amount | Name
6-
| ---:| ---
7-
| $13.00 USD / month | Ian Kemp
5+
| Amount | Name | Comment
6+
| ---:| --- | ---
7+
| $6000.00 USD | [.NET on AWS Open Source Software Fund](https://github.com/aws/dotnet-foss) | $500.00 for 12 months starting November 2024
8+
| $1000.00 USD | Microsoft | -
9+
| $13.00 USD / month | Ian Kemp | starting July 2021
810

911
### Donations
1012

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ Contributions are welcome! If you are interested please see:
3636

3737
TIP: Bugfixes or small improvements can be implemented right away. Larger task like adding new analyzer or refactoring should be discussed first.
3838

39+
## Donations
40+
41+
Special thanks to:
42+
- [.NET on AWS Open Source Software Fund](https://github.com/aws/dotnet-foss) for donating $6000.00 USD ($500.00 for 12 months starting November 2024).
43+
- Microsoft for donating $1000.00 USD.
44+
- Ian Kemp for donating $13.00 USD / month starting July 2021.
45+
3946
## .NET Foundation
4047

4148
This project is supported by the [.NET Foundation](https://www.dotnetfoundation.org/projects).

src/CommandLine/CommandLine.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@
4545
<NuspecProperties>publishDir=$([MSBuild]::NormalizeDirectory($(IntermediatePackDir)));version=$(RoslynatorCliPackageVersion)</NuspecProperties>
4646
</PropertyGroup>
4747

48+
<ItemGroup>
49+
<!-- Package 'Microsoft.IO.Redist' 6.0.0 has a known high severity vulnerability -->
50+
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-hq7w-xv5x-g34j" />
51+
<!-- Package 'System.Text.Json' 8.0.0 has a known high severity vulnerability -->
52+
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-8g4q-xg66-9fp4" />
53+
<!-- Package 'System.Text.Json' 8.0.0 has a known high severity vulnerability -->
54+
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-hh2w-p6rv-4g7w" />
55+
</ItemGroup>
56+
4857
<ItemGroup>
4958
<PackageReference Include="CommandLineParser" Version="2.8.0" />
5059
<PackageReference Include="Microsoft.Build.Locator" Version="$(RoslynatorMicrosoftBuildLocatorVersion)" />

src/CommandLine/EncodingHelpers.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ public static Encoding DetectEncoding(Stream stream)
1616

1717
var buffer = new byte[4];
1818

19+
#pragma warning disable CA2022
1920
stream.Read(buffer, 0, 4);
21+
#pragma warning restore CA2022
2022

2123
if (buffer[0] == 0xFE
2224
&& buffer[1] == 0xFF)

src/VisualStudio/VisualStudio.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.4.2119" PrivateAssets="all" />
3333
</ItemGroup>
3434

35+
<ItemGroup>
36+
<!-- Package 'MessagePack' 2.2.85 has a known moderate severity vulnerability -->
37+
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-4qm4-8hg2-g2xm" />
38+
</ItemGroup>
39+
3540
<PropertyGroup>
3641
<StartAction>Program</StartAction>
3742
<StartProgram>$(DevEnvDir)devenv.exe</StartProgram>

0 commit comments

Comments
 (0)