Skip to content

Commit 18024ca

Browse files
devlooped-botkzu
authored andcommitted
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Add nullable and generated code annotations devlooped/oss@b2a11fa - Revert back to dotnet-sponsor devlooped/oss@8d29f01 - Add copylocal behavior when merging assemblies devlooped/oss@7cda4a1 - Add our implementation of JWT manifest reading and reporting devlooped/oss@a0ae727 - Simplify and unify manifest reading implementation devlooped/oss@4fca946 - Minimal docs on consuming devlooped/oss@827a1d1 - Integrate more seamlessly with the existing workflows devlooped/oss@e732f6a - Whitespace and formatting devlooped/oss@d74f511 - Update to checkout@v4 devlooped/oss@5fb1723 - Cleanup build and publish to use VersionLabel devlooped/oss@14deaea - Don't add random wait on manual dotnet-file runs devlooped/oss@7afe350 - Add compatibility for non-SDK projects without InitializeSourceControlInformation target devlooped/oss@6e96c59 - Set Version from VersionLabel if it's a refs/tags/ devlooped/oss@57653a2 - Only commit markdown files when resolving includes devlooped/oss@2c10a83
1 parent f80b271 commit 18024ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2571
-30
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ on:
1717

1818
env:
1919
DOTNET_NOLOGO: true
20-
VersionPrefix: 42.42.${{ github.run_number }}
21-
VersionLabel: ${{ github.ref }}
2220
PackOnBuild: true
2321
GeneratePackageOnBuild: true
22+
VersionPrefix: 42.42.${{ github.run_number }}
23+
VersionLabel: ${{ github.ref }}
2424
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2525

2626
defaults:
@@ -34,7 +34,7 @@ jobs:
3434
matrix: ${{ steps.lookup.outputs.matrix }}
3535
steps:
3636
- name: 🤘 checkout
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v4
3838

3939
- name: 🔎 lookup
4040
id: lookup
@@ -53,7 +53,7 @@ jobs:
5353
os: ${{ fromJSON(needs.os-matrix.outputs.matrix) }}
5454
steps:
5555
- name: 🤘 checkout
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v4
5757
with:
5858
submodules: recursive
5959
fetch-depth: 0
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
steps:
9292
- name: 🤘 checkout
93-
uses: actions/checkout@v2
93+
uses: actions/checkout@v4
9494
with:
9595
submodules: recursive
9696
fetch-depth: 0

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
github_token: ${{ secrets.GITHUB_TOKEN }}
1818

1919
- name: 🤘 checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
ref: main

.github/workflows/dotnet-file.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ jobs:
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
- name: 🤘 checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
3030
ref: main
3131
token: ${{ env.GH_TOKEN }}
3232

3333
- name: ⌛ rate
3434
shell: pwsh
35+
if: github.event_name != 'workflow_dispatch'
3536
run: |
3637
# add random sleep since we run on fixed schedule
3738
sleep (get-random -max 60)

.github/workflows/includes.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
github_token: ${{ secrets.GITHUB_TOKEN }}
2222

2323
- name: 🤘 checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525
with:
2626
token: ${{ env.GH_TOKEN }}
2727

@@ -31,6 +31,7 @@ jobs:
3131
- name: ✍ pull request
3232
uses: peter-evans/create-pull-request@v6
3333
with:
34+
add-paths: '**/*.md'
3435
base: main
3536
branch: markdown-includes
3637
delete-branch: true

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,21 @@ env:
1212
Configuration: Release
1313
PackOnBuild: true
1414
GeneratePackageOnBuild: true
15+
VersionLabel: ${{ github.ref }}
1516
GH_TOKEN: ${{ secrets.GH_TOKEN }}
1617

1718
jobs:
1819
publish:
1920
runs-on: ubuntu-latest
2021
steps:
2122
- name: 🤘 checkout
22-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2324
with:
2425
submodules: recursive
2526
fetch-depth: 0
2627

2728
- name: 🙏 build
28-
run: dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v} -bl:build.binlog
29+
run: dotnet build -m:1 -bl:build.binlog
2930

3031
- name: 🧪 test
3132
uses: ./.github/workflows/test

.github/workflows/sponsor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: 🤘 checkout
1717
if: env.token != ''
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
- name: 💜 sponsor
2121
if: env.token != ''

.netconfig

Lines changed: 189 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@
2727
weak
2828
[file ".github/workflows/build.yml"]
2929
url = https://github.com/devlooped/oss/blob/main/.github/workflows/build.yml
30-
sha = 97ebd189e44da857e53e4d98af2727dd9dcb0740
31-
etag = f02775f5cdf8ba06238500e56bc25ca1e0aa329db4931f230c45bd1d7de1696d
30+
sha = 14deaea5cecc64df51781d29891a2f67caf8be16
31+
etag = d9fa5d91dc601f10d19099abb55c86df065cd1c23b1f6fab98ad883cb443bf5c
3232
weak
3333
[file ".github/workflows/changelog.yml"]
3434
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.yml
35-
sha = a4b66eb5f4dfb9704502f19f59ba33cb4855188c
36-
etag = 54c0b571648b1055beb3ddac180b34e93a9869b9f0277de306901b2c1dbe0b2c
35+
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
36+
etag = ad1efa56d6024ee1add2bcda81a7e4e38d0e9069473c6ff70374d5ce06af1f5a
3737
weak
3838
[file ".github/workflows/dotnet-file.yml"]
3939
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
40-
sha = 11a331d50be517c29df5ab1358ef354d8871d59a
41-
etag = de115efac25b63d561d8b2ffcba3e7710bfef7bfefecb811ea943b6f2bd8de96
40+
sha = 7afe350f7e80a230e922db026d4e1198ba15cae1
41+
etag = 65e9794df6caff779eb989c8f71ddf4d4109b24a75af79e4f8d0fe6ba7bd9702
4242
weak
4343
[file ".github/workflows/publish.yml"]
4444
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
45-
sha = 97ebd189e44da857e53e4d98af2727dd9dcb0740
46-
etag = 04a0796e61476765c0a233806e85fb3f461d7cf099a14c91e6c5abcab938062f
45+
sha = 14deaea5cecc64df51781d29891a2f67caf8be16
46+
etag = 4e9a9885a28ce867fd6139e1ae23735ad0073775145af96ff7d96d047d750973
4747
weak
4848
[file ".gitignore"]
4949
url = https://github.com/devlooped/oss/blob/main/.gitignore
@@ -72,8 +72,8 @@
7272
weak
7373
[file "src/Directory.Build.props"]
7474
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
75-
sha = 6dfe21fbd4a8390448958c714f8e9006fc4ac3ca
76-
etag = de7c6b643bac2fc6651fa08f69d628cbbe12e7050829b981ac771e1b9ccccd89
75+
sha = 14deaea5cecc64df51781d29891a2f67caf8be16
76+
etag = f177eb767aaa6a347da43ff7ff419c9a0736c562cb171e17ded8007a1945a8b0
7777
weak
7878
[file "src/Directory.Build.targets"]
7979
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
@@ -110,13 +110,13 @@
110110
weak
111111
[file ".github/workflows/includes.yml"]
112112
url = https://github.com/devlooped/oss/blob/main/.github/workflows/includes.yml
113-
sha = 11a8757c0012f0d454370823e1cda51398f4337e
114-
etag = 73426a1361c9d298b5794c99d774043b8e9425bda759bb769fdaa025636d6e3c
113+
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
114+
etag = e5ee22e115c925fb85ec931cda3ac811fcc453c03904554fa3f573935b221d34
115115
weak
116116
[file ".github/workflows/sponsor.yml"]
117117
url = https://github.com/devlooped/oss/blob/main/.github/workflows/sponsor.yml
118-
sha = 8990ebb36199046e0b8098bad9e46dcef739c56e
119-
etag = e1dc114d2e8b57d50649989d32dbf0c9080ec77da3738a4cc79e9256d6ca5d3e
118+
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
119+
etag = 0849ee61af6daee29615f9632173b4e82da5bfa9d78ff28907e9408bd5acde4d
120120
weak
121121
[file ".github/workflows/test/action.yml"]
122122
url = https://github.com/devlooped/oss/blob/main/.github/workflows/test/action.yml
@@ -126,3 +126,178 @@
126126
[file "src/nuget.config"]
127127
url = https://github.com/devlooped/oss/blob/main/src/nuget.config
128128
skip
129+
[file "src/SponsorLink/Analyzer/Analyzer.csproj"]
130+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Analyzer/Analyzer.csproj
131+
sha = 7cda4a18313b0b38b26c0152e1007cdbb9b6ba3a
132+
etag = d9444fa36daa8f4ff8f06fc2f9f600dbd8032f25ff58542d3b96676e0305677e
133+
weak
134+
[file "src/SponsorLink/Analyzer/Properties/launchSettings.json"]
135+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Analyzer/Properties/launchSettings.json
136+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
137+
etag = 6c59ab4d008e3221e316c9e3b6e0da155b892680d48cdc400a39d53cb9a12aac
138+
weak
139+
[file "src/SponsorLink/Analyzer/StatusReportingAnalyzer.cs"]
140+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Analyzer/StatusReportingAnalyzer.cs
141+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
142+
etag = 23d4cd16294974d85164fc26d6a7e2ae52698f23a62463db5025d69d9c166dc5
143+
weak
144+
[file "src/SponsorLink/Analyzer/buildTransitive/SponsorableLib.targets"]
145+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Analyzer/buildTransitive/SponsorableLib.targets
146+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
147+
etag = 332060de0945590d7c41cd237c250b8186acd6fc2045cc85a890368c74fdf473
148+
weak
149+
[file "src/SponsorLink/Directory.Build.props"]
150+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Directory.Build.props
151+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
152+
etag = 6823e1e914ecedd174276e3d53517cc0b332bb47c56402a9512cfa6aeeeb067e
153+
weak
154+
[file "src/SponsorLink/Directory.Build.targets"]
155+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Directory.Build.targets
156+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
157+
etag = 9938f29c3573bf8bdb9686e1d9884dee177256b1d5dd7ee41472dd64bfbdd92d
158+
weak
159+
[file "src/SponsorLink/Library/Library.csproj"]
160+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Library/Library.csproj
161+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
162+
etag = 3720f8ae0605aa64df8f6c1d9769969162175b79c93a21024653f210a42348e6
163+
weak
164+
[file "src/SponsorLink/Library/MyClass.cs"]
165+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Library/MyClass.cs
166+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
167+
etag = b5b3ccd6cd14bb90dd9702b9d7e52cc22c11e601c039617738d688f9fd45d49b
168+
weak
169+
[file "src/SponsorLink/Library/Resources.resx"]
170+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Library/Resources.resx
171+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
172+
etag = aff6051733d22982e761f2b414173aafeab40e0a76a142e2b33025dced213eb2
173+
weak
174+
[file "src/SponsorLink/SponsorLink.targets"]
175+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink.targets
176+
sha = 7cda4a18313b0b38b26c0152e1007cdbb9b6ba3a
177+
etag = d725bd9cfa33f35224e91748f64237e4dc66270f7e5ec7c835b78164531ae3db
178+
weak
179+
[file "src/SponsorLink/SponsorLink/AppDomainDictionary.cs"]
180+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/AppDomainDictionary.cs
181+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
182+
etag = 4a70f86e73f951bca95618c221d821e38a31ef9092af4ac61447eab845671a28
183+
weak
184+
[file "src/SponsorLink/SponsorLink/DiagnosticsManager.cs"]
185+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/DiagnosticsManager.cs
186+
sha = b2a11faac6c1c300bce8c1d45f95b585c19f2953
187+
etag = 9f289f45169f35916fff1857840d4118ed134215639d6dae9016dc62004291a5
188+
weak
189+
[file "src/SponsorLink/SponsorLink/ManifestStatus.cs"]
190+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/ManifestStatus.cs
191+
sha = b2a11faac6c1c300bce8c1d45f95b585c19f2953
192+
etag = e46848f83c0436ba33a1c09a4060ad627a74db41bab66bb37ca40fce8a6532a7
193+
weak
194+
[file "src/SponsorLink/SponsorLink/SponsorLink.cs"]
195+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorLink.cs
196+
sha = 4fca946c3201d90d30e2183f699c850dcc1bf8d5
197+
etag = 96e1b1b28bfb2372bd5ffcc6bdef65ee926822b3489ce65be4e5a400884dce21
198+
weak
199+
[file "src/SponsorLink/SponsorLink/SponsorLink.csproj"]
200+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorLink.csproj
201+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
202+
etag = ffaea0b580d8dccd672e749a5efd11fda318c484ca4a34428ff81524ec80ec4b
203+
weak
204+
[file "src/SponsorLink/SponsorLink/SponsorLink.es.resx"]
205+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorLink.es.resx
206+
sha = 8d29f013595aab6d965f1b91eb8b0ecaa0246366
207+
etag = 7f623861748c4e7f534fa2118eb66ad3056fd5b28cd5d1d19e9348d0236ffe29
208+
weak
209+
[file "src/SponsorLink/SponsorLink/SponsorLink.resx"]
210+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorLink.resx
211+
sha = 8d29f013595aab6d965f1b91eb8b0ecaa0246366
212+
etag = 47a7b843e07a8ec858579f435b59548056b14d00d6653dc41ef5807613925f31
213+
weak
214+
[file "src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs"]
215+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs
216+
sha = b2a11faac6c1c300bce8c1d45f95b585c19f2953
217+
etag = fc96f7f5642cbf69b35b7e8de1756822580315f0cee61e47da3b2b1b03f68e1a
218+
weak
219+
[file "src/SponsorLink/SponsorLink/SponsorStatus.cs"]
220+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorStatus.cs
221+
sha = 4fca946c3201d90d30e2183f699c850dcc1bf8d5
222+
etag = 9a5f6f35c38c34b77796925d80addc998e204bc112fcd5fc124030060390e7c2
223+
weak
224+
[file "src/SponsorLink/SponsorLink/SponsorableLib.targets"]
225+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/SponsorableLib.targets
226+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
227+
etag = 2f923a97081481a6a264d63c8ff70ce5ba65c3dbaf7ea078cbe1388fb0868e1c
228+
weak
229+
[file "src/SponsorLink/SponsorLink/ThisAssembly.cs"]
230+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/ThisAssembly.cs
231+
sha = b2a11faac6c1c300bce8c1d45f95b585c19f2953
232+
etag = 978269025f58e2bae872af25fdfd94659e234e8365e3014c18b1b20fdcd155bf
233+
weak
234+
[file "src/SponsorLink/SponsorLink/Tracing.cs"]
235+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/Tracing.cs
236+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
237+
etag = 22e32872cafd080bcd5ac9084355578ef70910c8e494602ead365139dcbf40c0
238+
weak
239+
[file "src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets"]
240+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets
241+
sha = 8d29f013595aab6d965f1b91eb8b0ecaa0246366
242+
etag = c7abdd1f840a32948afa15fce5ef5c22f1a29fb8394d265b7c9cbf646a2030bf
243+
weak
244+
[file "src/SponsorLink/SponsorLink/devlooped.pub.jwk"]
245+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/devlooped.pub.jwk
246+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
247+
etag = cf884781ff88b4d096841e3169282762a898b2050c9b5dac0013bc15bdbee267
248+
weak
249+
[file "src/SponsorLink/SponsorLink/sponsorable.md"]
250+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLink/sponsorable.md
251+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
252+
etag = 9c275d50705a2e661f0f86f1ae5e555c0033a05e86e12f936283a5b5ef47ae77
253+
weak
254+
[file "src/SponsorLink/SponsorLinkAnalyzer.sln"]
255+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/SponsorLinkAnalyzer.sln
256+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
257+
etag = fc2928c9b303d81ff23891ee791a859b794d9f2d4b9f4e81b9ed15e5b74db487
258+
weak
259+
[file "src/SponsorLink/Tests/.netconfig"]
260+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/.netconfig
261+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
262+
etag = 089a26cdb722d57014c8b8104cc6f4e770868efdc49ae3119eebc873f00a316e
263+
weak
264+
[file "src/SponsorLink/Tests/Attributes.cs"]
265+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/Attributes.cs
266+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
267+
etag = 1d7c17a2c9424db73746112c338a39e0000134ac878b398e2aa88f7ea5c0c488
268+
weak
269+
[file "src/SponsorLink/Tests/Extensions.cs"]
270+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/Extensions.cs
271+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
272+
etag = f68e11894103f8748ce290c29927bf1e4f749e743ae33d5350e72ed22c15d245
273+
weak
274+
[file "src/SponsorLink/Tests/JsonOptions.cs"]
275+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/JsonOptions.cs
276+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
277+
etag = 6e9a1b12757a97491441b9534ced4e5dac6d9d6334008fa0cd20575650bbd935
278+
weak
279+
[file "src/SponsorLink/Tests/Sample.cs"]
280+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/Sample.cs
281+
sha = e732f6a2c44a2f7940a1868a92cd66523f74ed24
282+
etag = db968d1d665b77a17e13bc7ca3d43ea65ed05cbebc18669f1b607ebe0e38a59a
283+
weak
284+
[file "src/SponsorLink/Tests/SponsorLinkTests.cs"]
285+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/SponsorLinkTests.cs
286+
sha = d74f5111504a0fae6e5a1e68ca92bf7afddb3254
287+
etag = 1fa41250bd984e8aa840a966d34ce0e94f2111d1422d7f50b864c38364fcf4a4
288+
weak
289+
[file "src/SponsorLink/Tests/SponsorableManifest.cs"]
290+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/SponsorableManifest.cs
291+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
292+
etag = e0c95e7fc6c0499dbc8c5cd28aa9a6a5a49c9d0ad41fe028a5a085aca7e00eaf
293+
weak
294+
[file "src/SponsorLink/Tests/Tests.csproj"]
295+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/Tests/Tests.csproj
296+
sha = a0ae7272f31c766ebb129ea38c11c01df93b6b5d
297+
etag = 237409e155202ec1b845593195d30057a949b2b18ae46a575e4cf480e4e2c8fe
298+
weak
299+
[file "src/SponsorLink/readme.md"]
300+
url = https://github.com/devlooped/oss/blob/main/src/SponsorLink/readme.md
301+
sha = 827a1d18bf0245978d81bcd3d52e9e6f1584d1ef
302+
etag = 079b4aedba2aa9851e609b569f25c55db8d5922e3dbb1adc22611ce4d6cfe465
303+
weak

readme.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,12 @@ OPTIONS:
104104
[![Kori Francis](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kfrancis.png "Kori Francis")](https://github.com/kfrancis)
105105
[![Toni Wenzel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/twenzel.png "Toni Wenzel")](https://github.com/twenzel)
106106
[![Giorgi Dalakishvili](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Giorgi.png "Giorgi Dalakishvili")](https://github.com/Giorgi)
107-
[![Mike James](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MikeCodesDotNET.png "Mike James")](https://github.com/MikeCodesDotNET)
108107
[![Uno Platform](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/unoplatform.png "Uno Platform")](https://github.com/unoplatform)
109108
[![Dan Siegel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dansiegel.png "Dan Siegel")](https://github.com/dansiegel)
110109
[![Reuben Swartz](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rbnswartz.png "Reuben Swartz")](https://github.com/rbnswartz)
111110
[![Jacob Foshee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jfoshee.png "Jacob Foshee")](https://github.com/jfoshee)
112111
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Mrxx99.png "")](https://github.com/Mrxx99)
113112
[![Eric Johnson](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/eajhnsn1.png "Eric Johnson")](https://github.com/eajhnsn1)
114-
[![Certify The Web](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/certifytheweb.png "Certify The Web")](https://github.com/certifytheweb)
115113
[![Ix Technologies B.V.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/IxTechnologies.png "Ix Technologies B.V.")](https://github.com/IxTechnologies)
116114
[![David JENNI](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidjenni.png "David JENNI")](https://github.com/davidjenni)
117115
[![Jonathan ](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Jonathan-Hickey.png "Jonathan ")](https://github.com/Jonathan-Hickey)
@@ -121,14 +119,12 @@ OPTIONS:
121119
[![Seann Alexander](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/seanalexander.png "Seann Alexander")](https://github.com/seanalexander)
122120
[![Tino Hager](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tinohager.png "Tino Hager")](https://github.com/tinohager)
123121
[![Mark Seemann](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ploeh.png "Mark Seemann")](https://github.com/ploeh)
124-
[![Angelo Belchior](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/angelobelchior.png "Angelo Belchior")](https://github.com/angelobelchior)
125122
[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png "Ken Bonny")](https://github.com/KenBonny)
126123
[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png "Simon Cropp")](https://github.com/SimonCropp)
127124
[![agileworks-eu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agileworks-eu.png "agileworks-eu")](https://github.com/agileworks-eu)
128125
[![sorahex](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png "sorahex")](https://github.com/sorahex)
129126
[![Zheyu Shen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/arsdragonfly.png "Zheyu Shen")](https://github.com/arsdragonfly)
130127
[![Vezel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/vezel-dev.png "Vezel")](https://github.com/vezel-dev)
131-
[![Michael Staib](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/michaelstaib.png "Michael Staib")](https://github.com/michaelstaib)
132128
[![ChilliCream](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ChilliCream.png "ChilliCream")](https://github.com/ChilliCream)
133129
[![4OTC](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/4OTC.png "4OTC")](https://github.com/4OTC)
134130

0 commit comments

Comments
 (0)