Skip to content

Commit cf0ad01

Browse files
committed
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Ensure lf for Scriban templates always devlooped/oss@4a9aa32 - Improve default Product metadata, remove .git from user-facing URLs devlooped/oss@4339749 - Switch to dotnet-env for .NET SDK setup devlooped/oss@56c2b85 - Add Company MSBuild property by default devlooped/oss@c509be4 - Ignore .env files recursively devlooped/oss@3776526 - Allow workflow to work cross-org devlooped/oss@af171b7 - Add explicit write permissions from caller workflow devlooped/oss@8fa147d - Group MEAI packages together devlooped/oss@e733294 # devlooped/SponsorLink - Improve wording on editor usage requiring sponsorship devlooped/SponsorLink@21d8dac - Fix version/override for CPV devlooped/SponsorLink@8a40822 - Fix overwriting of $(FundingPackageId) in targets devlooped/SponsorLink@697e210 - Remove workaround for previous buggy targets from TA devlooped/SponsorLink@8f0e621 - Bump JWT also in samples devlooped/SponsorLink@e8ec200 - Introduce standalone SponsorManifest for read/validate devlooped/SponsorLink@a755e4b - Bump nuget dependencies for the dotnet analyzer sample devlooped/SponsorLink@0f551e3
1 parent 8916683 commit cf0ad01

25 files changed

+142
-331
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# normalize by default
22
* text=auto encoding=UTF-8
33
*.sh text eol=lf
4+
*.sbn eol=lf
45

56
# These are windows specific files which we may as well ensure are
67
# always crlf on checkout

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ updates:
2424
Extensions:
2525
patterns:
2626
- "Microsoft.Extensions*"
27+
exclude-patterns:
28+
- "Microsoft.Extensions.AI*"
29+
ExtensionsAI:
30+
patterns:
31+
- "Microsoft.Extensions.AI*"
2732
Web:
2833
patterns:
2934
- "Microsoft.AspNetCore*"
@@ -38,3 +43,6 @@ updates:
3843
ProtoBuf:
3944
patterns:
4045
- "protobuf-*"
46+
Spectre:
47+
patterns:
48+
- "Spectre.Console*"

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ env:
2828
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2929
MSBUILDTERMINALLOGGER: auto
3030
Configuration: ${{ github.event.inputs.configuration || 'Release' }}
31+
SLEET_FEED_URL: ${{ vars.SLEET_FEED_URL }}
3132

3233
defaults:
3334
run:
@@ -65,12 +66,7 @@ jobs:
6566
fetch-depth: 0
6667

6768
- name: ⚙ dotnet
68-
uses: actions/setup-dotnet@v4
69-
with:
70-
dotnet-version: |
71-
6.x
72-
8.x
73-
9.x
69+
uses: devlooped/actions-dotnet-env@v1
7470

7571
- name: 🙏 build
7672
run: dotnet build -m:1 -bl:build.binlog
@@ -104,6 +100,9 @@ jobs:
104100
submodules: recursive
105101
fetch-depth: 0
106102

103+
- name: ⚙ dotnet
104+
uses: devlooped/actions-dotnet-env@v1
105+
107106
- name: ✓ ensure format
108107
run: |
109108
dotnet format whitespace --verify-no-changes -v:diag --exclude ~/.nuget

.github/workflows/dotnet-file-core.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name: dotnet-file-core
33
on:
44
workflow_call:
5+
secrets:
6+
BOT_NAME:
7+
required: false
8+
BOT_EMAIL:
9+
required: false
10+
GH_TOKEN:
11+
required: false
512

613
env:
714
DOTNET_NOLOGO: true

.github/workflows/dotnet-file.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@ env:
1212

1313
jobs:
1414
run:
15+
permissions:
16+
contents: write
1517
uses: devlooped/oss/.github/workflows/dotnet-file-core.yml@main
16-
secrets: inherit
18+
secrets:
19+
BOT_NAME: ${{ secrets.BOT_NAME }}
20+
BOT_EMAIL: ${{ secrets.BOT_EMAIL }}
21+
GH_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/publish.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ env:
1515
VersionLabel: ${{ github.ref }}
1616
GH_TOKEN: ${{ secrets.GH_TOKEN }}
1717
MSBUILDTERMINALLOGGER: auto
18-
18+
SLEET_FEED_URL: https://api.nuget.org/v3/index.json
19+
1920
jobs:
2021
publish:
2122
runs-on: ${{ vars.PUBLISH_AGENT || 'ubuntu-latest' }}
@@ -27,12 +28,7 @@ jobs:
2728
fetch-depth: 0
2829

2930
- name: ⚙ dotnet
30-
uses: actions/setup-dotnet@v4
31-
with:
32-
dotnet-version: |
33-
6.x
34-
8.x
35-
9.x
31+
uses: devlooped/actions-dotnet-env@v1
3632

3733
- name: 🙏 build
3834
run: dotnet build -m:1 -bl:build.binlog

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ BenchmarkDotNet.Artifacts
1111
.genaiscript
1212
.idea
1313
local.settings.json
14+
.env
1415

1516
*.suo
1617
*.sdf

.netconfig

Lines changed: 42 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@
3232
weak
3333
[file ".gitattributes"]
3434
url = https://github.com/devlooped/oss/blob/main/.gitattributes
35-
sha = 5f92a68e302bae675b394ef343114139c075993e
36-
etag = 338ba6d92c8d1774363396739c2be4257bfc58026f4b0fe92cb0ae4460e1eff7
35+
sha = 4a9aa321c4982b83c185cf8dffed181ff84667d5
36+
etag = 09cad18280ed04b67f7f87591e5481510df04d44c3403231b8af885664d8fd58
3737
weak
3838
[file ".github/dependabot.yml"]
3939
url = https://github.com/devlooped/oss/blob/main/.github/dependabot.yml
40-
sha = 49661dbf0720cde93eb5569be7523b5912351560
41-
etag = c147ea2f3431ca0338c315c4a45b56ee233c4d30f8d6ab698d0e1980a257fd6a
40+
sha = e733294084fb3e75d517a2e961e87df8faae7dc6
41+
etag = 3bf8d9214a15c049ca5cfe80d212a8cbe4753b8a638a9804ef73d34c7def9618
4242
weak
4343
[file ".github/workflows/build.yml"]
4444
url = https://github.com/devlooped/oss/blob/main/.github/workflows/build.yml
45-
sha = 06e898ccba692566ebf845fa7c8833ac6c318c0a
46-
etag = 0a4b3f0a875cd8c9434742b4046558aecf610d3fa3d490cfd2099266e95e9195
45+
sha = 56c2b8532c2f86235a0f5bd00ba6eba126f199cf
46+
etag = bf99c19427f4372ecfe38ec56aa8c411058684fb717da5661f17ac00388b3602
4747
weak
4848
[file ".github/workflows/changelog.yml"]
4949
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.yml
@@ -52,18 +52,18 @@
5252
weak
5353
[file ".github/workflows/dotnet-file.yml"]
5454
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
55-
sha = 59aaf432369b5ea597831d4feec5a6ac4024c2e3
56-
etag = 1374e3f8c9b7af69c443605c03f7262300dcb7d783738d9eb9fe84268ed2d10c
55+
sha = 8fa147d4799d73819040736c399d0b1db2c2d86c
56+
etag = 1ca805a23656e99c03f9d478dba8ccef6e571f5de2ac0e9bb7e3c5216c99a694
5757
weak
5858
[file ".github/workflows/publish.yml"]
5959
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
60-
sha = 06e898ccba692566ebf845fa7c8833ac6c318c0a
61-
etag = 2f64f75ad01f735fd05290370fb8a826111ac8dd7e74ce04226bb627a54a62ba
60+
sha = 56c2b8532c2f86235a0f5bd00ba6eba126f199cf
61+
etag = 2ef43521627aa3a91dd55bdc2856ec0c6a93b42485d4fe9d6b181f9ee42c8e18
6262
weak
6363
[file ".gitignore"]
6464
url = https://github.com/devlooped/oss/blob/main/.gitignore
65-
sha = e0be248fff1d39133345283b8227372b36574b75
66-
etag = c449ec6f76803e1891357ca2b8b4fcb5b2e5deeff8311622fd92ca9fbf1e6575
65+
sha = 3776526342afb3f57da7e80f2095e5fdca3c31c9
66+
etag = 11767f73556aa4c6c8bcc153b77ee8e8114f99fa3b885b0a7d66d082f91e77b3
6767
weak
6868
[file "Directory.Build.rsp"]
6969
url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp
@@ -87,13 +87,13 @@
8787
weak
8888
[file "src/Directory.Build.props"]
8989
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
90-
sha = b76de49afb376aa48eb172963ed70663b59b31d3
91-
etag = c8b56f3860cc7ccb8773b7bd6189f5c7a6e3a2c27e9104c1ee201fbdc5af9873
90+
sha = c509be4378ff6789df4f66338cb88119453c0975
91+
etag = cbbdc1a4d3030f353f3e5306a6c380238dd4ed0945aad2d56ba87b49fcfcd66d
9292
weak
9393
[file "src/Directory.Build.targets"]
9494
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
95-
sha = a8b208093599263b7f2d1fe3854634c588ea5199
96-
etag = 19087699f05396205e6b050d999a43b175bd242f6e8fac86f6df936310178b03
95+
sha = 4339749ef4b8f66def75931df09ef99c149f8421
96+
etag = 8b4492765755c030c4c351e058a92f53ab493cab440c1c0ef431f6635c4dae0e
9797
weak
9898
[file "src/kzu.snk"]
9999
url = https://github.com/devlooped/oss/blob/main/src/kzu.snk
@@ -144,9 +144,9 @@
144144
url = https://github.com/devlooped/SponsorLink/tree/main/samples/dotnet/
145145
[file "src/SponsorLink/Analyzer/Analyzer.csproj"]
146146
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/Analyzer.csproj
147-
sha = e55425333883c4470d745f8fee70bdf204c292ee
147+
sha = 8f0e6216360f3f8700b4845f3ec2310aabd996f3
148148

149-
etag = 8aa140018fcfbd889c11da36c8c21b5cfb5730c07aa3317d734b118cfa60b416
149+
etag = 671a82f0f6770a990f9364ecf321eeea75bd6092f98c009039af02df172152df
150150
weak
151151
[file "src/SponsorLink/Analyzer/GraceApiAnalyzer.cs"]
152152
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/GraceApiAnalyzer.cs
@@ -192,9 +192,9 @@
192192
weak
193193
[file "src/SponsorLink/Library/Library.csproj"]
194194
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/Library.csproj
195-
sha = f74ea7a8c7f81c5bceefb3ed7ef4249b1d8574a3
195+
sha = 0f551e3be564625ee4d078649c55363bf35954ba
196196

197-
etag = 592707adba548606ec50ced6e424be4cbfe34f18bf01555a19b29fa61efa416a
197+
etag = 1ba2df85e2aae342f575b9ea08c38b2117f43c131b24d38082d1d4394716f3d0
198198
weak
199199
[file "src/SponsorLink/Library/MyClass.cs"]
200200
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/MyClass.cs
@@ -216,15 +216,15 @@
216216
weak
217217
[file "src/SponsorLink/SponsorLink.Analyzer.Tests.targets"]
218218
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.Tests.targets
219-
sha = df44ccc14cc11b5674c55aca9ba8596bdbcf8438
219+
sha = 8a4082211918b604ad95ef0f3da3cd414747c46a
220220

221-
etag = a3e9cbcc227dd56a7bed236eaded136f1b80f9f36a4fabce8be695ee844bf881
221+
etag = ac4e82c24d5a812eb7a1ad20d2d076b7aeedddd90c8196eaea0c227693a2ede6
222222
weak
223223
[file "src/SponsorLink/SponsorLink.Analyzer.targets"]
224224
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.targets
225-
sha = fb82cf346cea86140a51ae49b9bc730d72f7c7ac
225+
sha = 8a4082211918b604ad95ef0f3da3cd414747c46a
226226

227-
etag = 284f794d03adabf10ac5e25ef87d257821a82eac112efe65d6fe23d675f9af7f
227+
etag = b75dd01945453c3ccd9eb96f65959ff1607a2cf11226fac5014b01b7cb6314d7
228228
weak
229229
[file "src/SponsorLink/SponsorLink/AnalyzerOptionsExtensions.cs"]
230230
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/AnalyzerOptionsExtensions.cs
@@ -244,12 +244,6 @@
244244

245245
etag = a5d79dbc0ed9fac4fb1879fb3790b9ebab18e47c14c454554ce9f53f21487bb5
246246
weak
247-
[file "src/SponsorLink/SponsorLink/ManifestStatus.cs"]
248-
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/ManifestStatus.cs
249-
sha = f47528874a6d9192b5546f84b455f5ccc474a707
250-
251-
etag = e46848f83c0436ba33a1c09a4060ad627a74db41bab66bb37ca40fce8a6532a7
252-
weak
253247
[file "src/SponsorLink/SponsorLink/Resources.es-AR.resx"]
254248
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es-AR.resx
255249
sha = 586398c3e650495f36601ecc8983a14ed745e058
@@ -258,27 +252,27 @@
258252
weak
259253
[file "src/SponsorLink/SponsorLink/Resources.es.resx"]
260254
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es.resx
261-
sha = 29921560c73bb91c2a21a21800daf0b250773598
255+
sha = 21d8dac3077c75cd07d7cc7f9e10f2620afce834
262256

263-
etag = feb9dc86e4d9c0c4a294cd6e03c5b914943e8d206b88a125abd1b0f882ddb247
257+
etag = 89a7bb797aeacca43e043196a00eea91f282df4caf9bbe937749026a03f707ad
264258
weak
265259
[file "src/SponsorLink/SponsorLink/Resources.resx"]
266260
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.resx
267-
sha = 29921560c73bb91c2a21a21800daf0b250773598
261+
sha = 21d8dac3077c75cd07d7cc7f9e10f2620afce834
268262

269-
etag = 7665a3be17cd224b1c413ade6a9c1c5a822dace1e7f9daae33a2e52d8bca15bb
263+
etag = 8902652b8907de2fbccf73f3738d0fce503fc667a084171d6b88bf3373e559e7
270264
weak
271265
[file "src/SponsorLink/SponsorLink/SponsorLink.cs"]
272266
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.cs
273-
sha = 3f72a9fd35274a659dd380a7d5b747d71b9732a1
267+
sha = a755e4be0f7cb73cfde208857e28f7cfeba2dcc3
274268

275-
etag = 616598e0ecb6d2ce97660aa6ac049e2a31a1c953669743b7b612b61d40c37706
269+
etag = 402e2beb11cf64c07be3d0fc3e89115fd09fc24133c08a8951bf0e784909c510
276270
weak
277271
[file "src/SponsorLink/SponsorLink/SponsorLink.csproj"]
278272
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.csproj
279-
sha = 0d22f1ee7d7afc93e11060887de0e1773884978e
273+
sha = e8ec200934a3b3788c2e31d7022c717f5fd152fa
280274

281-
etag = dbf30ffb9baa63e45a4c821bc1433e4289b9af84855c2a306eaa116874a1c9f2
275+
etag = 1a58baf82b1813f68610272aa6161a18a70d5c619154734039a0d48fce6d735a
282276
weak
283277
[file "src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs"]
284278
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLinkAnalyzer.cs
@@ -306,9 +300,9 @@
306300
weak
307301
[file "src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets"]
308302
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/buildTransitive/Devlooped.Sponsors.targets
309-
sha = d7090c1dbcb20c68b99486a6dc53d86b8d9b06bb
303+
sha = 697e210b68c7d6f0ececca7673d13f4309df6cd7
310304

311-
etag = e992b97517c9bcc6c9e927832bc13fac3036fa6d4ecaad893caf320b3c582aee
305+
etag = e2cb4d1bbf4096f4b3fcfa0b20abccb33520442b656f19e01e5da928fd927da8
312306
weak
313307
[file "src/SponsorLink/SponsorLink/sponsorable.md"]
314308
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/sponsorable.md
@@ -330,9 +324,9 @@
330324
weak
331325
[file "src/SponsorLink/Tests/AnalyzerTests.cs"]
332326
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/AnalyzerTests.cs
333-
sha = 29921560c73bb91c2a21a21800daf0b250773598
327+
sha = 697e210b68c7d6f0ececca7673d13f4309df6cd7
334328

335-
etag = 219df696a47a58d9de377166c87fbb199c84c33d3b7a0f7ae349543df050a583
329+
etag = 44ef3022d2ebe1251896542b697baa9dcef9b9805b68845ccc9d0ff0181ba9d1
336330
weak
337331
[file "src/SponsorLink/Tests/Attributes.cs"]
338332
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Attributes.cs
@@ -364,12 +358,6 @@
364358

365359
etag = 1875555adb7eab21acf1e730b6baeb8c095d9f6f9f07303a87ad9c16e0f6490d
366360
weak
367-
[file "src/SponsorLink/Tests/SponsorLinkTests.cs"]
368-
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorLinkTests.cs
369-
sha = f47528874a6d9192b5546f84b455f5ccc474a707
370-
371-
etag = 1fa41250bd984e8aa840a966d34ce0e94f2111d1422d7f50b864c38364fcf4a4
372-
weak
373361
[file "src/SponsorLink/Tests/SponsorableManifest.cs"]
374362
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorableManifest.cs
375363
sha = f47528874a6d9192b5546f84b455f5ccc474a707
@@ -378,9 +366,9 @@
378366
weak
379367
[file "src/SponsorLink/Tests/Tests.csproj"]
380368
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Tests.csproj
381-
sha = 0d22f1ee7d7afc93e11060887de0e1773884978e
369+
sha = e8ec200934a3b3788c2e31d7022c717f5fd152fa
382370

383-
etag = 5db4da024e4ecfb90be14feb4db952efa2109ee2ec84e715921291808d57b749
371+
etag = eb34fc9fe25b0169f069ff692379a19c59673727d8abb6f45816012661329df5
384372
weak
385373
[file "src/SponsorLink/Tests/keys/kzu.key"]
386374
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.key
@@ -432,12 +420,12 @@
432420
weak
433421
[file "src/SponsorLink/readme.md"]
434422
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/readme.md
435-
sha = 7407f5b3461213ae764f53ee93651a34487e458c
423+
sha = 697e210b68c7d6f0ececca7673d13f4309df6cd7
436424

437-
etag = 50937c64732bb2b97ddc67cc7b7b2d091c51390c9f5f2b5fdcfe9f1becb5d838
425+
etag = 3f3bb07d204d2539d90a28145653c4b48c1f373d7186b39d2593338cebcd3299
438426
weak
439427
[file ".github/workflows/dotnet-file-core.yml"]
440428
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file-core.yml
441-
sha = 875284ba5d565f529aba2f5d24ab8ed27c1d1c79
442-
etag = 8de1d974bf73b1945b5c8be684c3a0b7364114a0d795c9d68837aed9b3aff331
429+
sha = af171b7a87382ee665ba6fbaeb5f38a3551e1c23
430+
etag = 5ce370f52933ab2a4cd50f2b410e842fc5eab23088db2bf98b6c4d4ccdc9022b
443431
weak

readme.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,28 +139,30 @@ The versioning scheme for packages is:
139139
[![Kori Francis](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kfrancis.png "Kori Francis")](https://github.com/kfrancis)
140140
[![Toni Wenzel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/twenzel.png "Toni Wenzel")](https://github.com/twenzel)
141141
[![Uno Platform](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/unoplatform.png "Uno Platform")](https://github.com/unoplatform)
142-
[![Dan Siegel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dansiegel.png "Dan Siegel")](https://github.com/dansiegel)
143142
[![Reuben Swartz](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rbnswartz.png "Reuben Swartz")](https://github.com/rbnswartz)
144143
[![Jacob Foshee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jfoshee.png "Jacob Foshee")](https://github.com/jfoshee)
145144
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Mrxx99.png "")](https://github.com/Mrxx99)
146145
[![Eric Johnson](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/eajhnsn1.png "Eric Johnson")](https://github.com/eajhnsn1)
147-
[![Ix Technologies B.V.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/IxTechnologies.png "Ix Technologies B.V.")](https://github.com/IxTechnologies)
148146
[![David JENNI](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidjenni.png "David JENNI")](https://github.com/davidjenni)
149147
[![Jonathan ](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Jonathan-Hickey.png "Jonathan ")](https://github.com/Jonathan-Hickey)
150148
[![Charley Wu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/akunzai.png "Charley Wu")](https://github.com/akunzai)
151-
[![Jakob Tikjøb Andersen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jakobt.png "Jakob Tikjøb Andersen")](https://github.com/jakobt)
152-
[![Tino Hager](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tinohager.png "Tino Hager")](https://github.com/tinohager)
153149
[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png "Ken Bonny")](https://github.com/KenBonny)
154150
[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png "Simon Cropp")](https://github.com/SimonCropp)
155151
[![agileworks-eu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agileworks-eu.png "agileworks-eu")](https://github.com/agileworks-eu)
156-
[![sorahex](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png "sorahex")](https://github.com/sorahex)
157152
[![Zheyu Shen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/arsdragonfly.png "Zheyu Shen")](https://github.com/arsdragonfly)
158153
[![Vezel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/vezel-dev.png "Vezel")](https://github.com/vezel-dev)
159154
[![ChilliCream](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ChilliCream.png "ChilliCream")](https://github.com/ChilliCream)
160155
[![4OTC](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/4OTC.png "4OTC")](https://github.com/4OTC)
161156
[![Vincent Limo](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/v-limo.png "Vincent Limo")](https://github.com/v-limo)
162157
[![Jordan S. Jones](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jordansjones.png "Jordan S. Jones")](https://github.com/jordansjones)
163158
[![domischell](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/DominicSchell.png "domischell")](https://github.com/DominicSchell)
159+
[![Justin Wendlandt](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jwendl.png "Justin Wendlandt")](https://github.com/jwendl)
160+
[![Adrian Alonso](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/adalon.png "Adrian Alonso")](https://github.com/adalon)
161+
[![Michael Hagedorn](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Eule02.png "Michael Hagedorn")](https://github.com/Eule02)
162+
[![Alex Rønne Petersen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/alexrp.png "Alex Rønne Petersen")](https://github.com/alexrp)
163+
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/henkmartijn.png "")](https://github.com/henkmartijn)
164+
[![Sebastien Lebreton](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sailro.png "Sebastien Lebreton")](https://github.com/sailro)
165+
[![torutek](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/torutek.png "torutek")](https://github.com/torutek)
164166

165167

166168
<!-- sponsors.md -->

0 commit comments

Comments
 (0)