-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.netconfig
976 lines (975 loc) · 53.2 KB
/
.netconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
[file "src/Core/Authentication/OAuth"]
url = https://github.com/git-ecosystem/git-credential-manager/tree/v2.6.0/src/shared/Core/Authentication/OAuth/
[file "src/Core/Interop"]
url = https://github.com/git-ecosystem/git-credential-manager/tree/v2.6.0/src/shared/Core/Interop/
[file "src/SponsorLink"]
url = https://github.com/devlooped/SponsorLink/tree/main/samples/dotnet/
[file]
url = https://github.com/devlooped/oss
url = https://github.com/clarius/pages
[file ".netconfig"]
url = https://github.com/devlooped/oss/blob/main/.netconfig
skip
[file "readme.md"]
url = https://github.com/devlooped/oss/blob/main/readme.md
skip
[file "SponsorLink.sln"]
url = https://github.com/devlooped/oss/blob/main/SponsorLink.sln
skip
[file "src/icon.png"]
url = https://github.com/devlooped/oss/blob/main/src/icon.png
skip
[file ".github/ISSUE_TEMPLATE/config.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/ISSUE_TEMPLATE/config.yml
skip
[file ".github/workflows/release-artifacts.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/release-artifacts.yml
skip
[file "src/nuget.config"]
url = https://github.com/devlooped/oss/blob/main/src/nuget.config
skip
[file "assets/css/style.scss"]
url = https://github.com/devlooped/oss/blob/main/assets/css/style.scss
sha = 9db26e2710b084d219d6355339d822f159bf5780
etag = f710d8919abfd5a8d00050b74ba7d0bb05c6d02e40842a3012eb96555c208504
weak
[file "assets/images/sponsors.svg"]
url = https://github.com/devlooped/oss/blob/main/assets/images/sponsors.svg
skip
[file "assets/images/sponsors.png"]
url = https://github.com/devlooped/oss/blob/main/assets/images/sponsors.png
skip
[file ".editorconfig"]
url = https://github.com/devlooped/oss/blob/main/.editorconfig
sha = c779d3d4e468358106dea03e93ba2cd35bb01ecb
etag = 7298c6450967975a8782b5c74f3071e1910fc59686e48f9c9d5cd7c68213cf59
weak
[file ".gitattributes"]
url = https://github.com/devlooped/oss/blob/main/.gitattributes
sha = 5f92a68e302bae675b394ef343114139c075993e
etag = 338ba6d92c8d1774363396739c2be4257bfc58026f4b0fe92cb0ae4460e1eff7
weak
[file ".github/dependabot.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/dependabot.yml
sha = 49661dbf0720cde93eb5569be7523b5912351560
etag = c147ea2f3431ca0338c315c4a45b56ee233c4d30f8d6ab698d0e1980a257fd6a
weak
[file ".github/workflows/build.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/build.yml
skip
[file ".github/workflows/changelog.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.yml
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
etag = ad1efa56d6024ee1add2bcda81a7e4e38d0e9069473c6ff70374d5ce06af1f5a
weak
[file ".github/workflows/dotnet-file.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
sha = 7afe350f7e80a230e922db026d4e1198ba15cae1
etag = 65e9794df6caff779eb989c8f71ddf4d4109b24a75af79e4f8d0fe6ba7bd9702
weak
[file ".github/workflows/publish.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
skip
[file ".gitignore"]
url = https://github.com/devlooped/oss/blob/main/.gitignore
sha = 02811fa23b0a102b9b33048335d41e515bf75737
etag = a9c37ae312afac14b78436a7d018af4483d88736b5f780576f2c5a0b3f14998c
weak
[file "Directory.Build.rsp"]
url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp
sha = 0f7f7f7e8a29de9b535676f75fe7c67e629a5e8c
etag = 0ccae83fc51f400bfd7058170bfec7aba11455e24a46a0d7e6a358da6486e255
weak
[file "_config.yml"]
url = https://github.com/devlooped/oss/blob/main/_config.yml
sha = fa83a5161ba52bc5d510ce0ba75ee0b1f8d4bc63
etag = 9139148f845adf503fd3c3c140eb64421fc476a1f9c027fc50825c0efb05f557
weak
[file "license.txt"]
url = https://github.com/devlooped/oss/blob/main/license.txt
sha = 0683ee777d7d878d4bf013d7deea352685135a05
etag = 2c6335b37e4ae05eea7c01f5d0c9d82b49c488f868a8b5ba7bff7c6ff01f3994
weak
[file "src/Directory.Build.props"]
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
sha = b76de49afb376aa48eb172963ed70663b59b31d3
etag = c8b56f3860cc7ccb8773b7bd6189f5c7a6e3a2c27e9104c1ee201fbdc5af9873
weak
[file "src/Directory.Build.targets"]
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
sha = a8b208093599263b7f2d1fe3854634c588ea5199
etag = 19087699f05396205e6b050d999a43b175bd242f6e8fac86f6df936310178b03
weak
[file "src/kzu.snk"]
url = https://github.com/devlooped/oss/blob/main/src/kzu.snk
skip
[file ".github/workflows/pages.yml"]
url = https://github.com/clarius/pages/blob/main/.github/workflows/pages.yml
sha = afcb0421af6507eba5ceba913b8fc37261efc085
etag = c52b3f0463b88abf696ddf2c6902675e0bc9d1e812bb317cb758221d75330b56
weak
[file "Gemfile"]
url = https://github.com/clarius/pages/blob/main/Gemfile
sha = 90fa16ed0e7300a78a38ee1d23c34a7e875aab27
etag = 3dd7febc8ae6760f19abfe787711f469c288cd803a6f1c545edec34264d48e71
weak
[file ".github/workflows/includes.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/includes.yml
sha = d152e7437fd0d6f6d9363d23cb3b78c07335ea49
etag = ec40db34f379d0c6d83b2ec15624f330318a172cc4f85b5417c63e86eaf601df
weak
[file ".github/workflows/combine-prs.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/combine-prs.yml
sha = c1610886eba42cb250e3894aed40c0a258cd383d
etag = 598ee294649a44d4c5d5934416c01183597d08aa7db7938453fd2bbf52a4e64d
weak
[file ".github/release.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/release.yml
sha = 0c23e24704625cf75b2cb1fdc566cef7e20af313
etag = 310df162242c95ed19ed12e3c96a65f77e558b46dced676ad5255eb12caafe75
weak
[file ".github/workflows/changelog.config"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.config
sha = 08d83cb510732f861416760d37702f9f55bd7f9e
etag = 556a28914eeeae78ca924b1105726cdaa211af365671831887aec81f5f4301b4
weak
[file "src/Core/CommandContext.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/CommandContext.cs
sha = de1ff8bdeac3d60a76e0ebba98e01781d38a9d4d
etag = a62f430e31fd818c9576ebd4b07544fccb16d7a5fd29bcabcc840d7ba3c523c0
weak
[file "src/Core/Trace2.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2.cs
sha = a0599d08e06097b84c0fbbb18e9133ebe9977177
etag = a8e7322f388aa565e9222cd0b32ffd44d7b4072da04db7ccbe3fa5d561d07b56
weak
[file "src/Core/StandardStreams.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/StandardStreams.cs
sha = b8f4c28742268a7b5c783c1b302e12450ef7b8b1
etag = f73b9ea3181214fa10bce6ac62750494393f9c4086fa11954e51821de0f8c125
weak
[file "src/Core/ITerminal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ITerminal.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 576b88afbd5990a6839bc20ae78006a6d270f57cfc864402b5b7fc50f3dde8c1
weak
[file "src/Core/ISessionManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ISessionManager.cs
sha = e040cdff0eb0cdda610cbca1c730d020cbbfe5e8
etag = d0d8884d316a5782a88affa5ff83705b259e1407d328ae2ee405f477bb60a6d5
weak
[file "src/Core/FileSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/FileSystem.cs
sha = d37c201c3dc9a61078777ccaf770b707579d7722
etag = 11c4b510355966ca7fb9401bfb7a9ea7c08f02a061ca0c27c6aa16a3e20ec0d3
weak
[file "src/Core/ICredentialStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ICredentialStore.cs
sha = 28edc00ccca5cac29407687e09f6be4320f63f95
etag = a3d76b41023dad821a121db5f97cd1c8ca13050a3b67aaff159eed8d379f9c99
weak
[file "src/Core/Credential.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Credential.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = c9e982b5a617e964e668a9441c599cad48a1bcfdb328cdba1c16aacc960b7c43
weak
[file "src/Core/Trace.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace.cs
sha = e104c1881cbf18bc7a1efbc4d1eceb32fe3370fe
etag = e7c3cce66cc5be89165f1bae27bda691cf35186e6056c0221d62c8f7c937046f
weak
[file "src/Core/HttpClientFactory.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/HttpClientFactory.cs
sha = a656832ff360c66313d0b669e27eebf22cb44e30
etag = 88c94e9107332d43f3b7685f376f7a1c3639367fce2a7f2294c154dd061b1051
weak
[file "src/Core/Git.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Git.cs
sha = 6931c9275780477eae6b682a542c739924d44a36
etag = 08a172d297cf60dd5d978b20557021c559acf9c4028cd556f02cb23b075cdb68
weak
[file "src/Core/EnvironmentBase.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/EnvironmentBase.cs
sha = f25667261e9df8d96b8fce25b7c39f48a800b554
etag = 07812af00bf0bc0d845e8c0c263d945a8e99ae058c0e46da066f27d205907b39
weak
[file "src/Core/ProcessManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ProcessManager.cs
sha = 65e5a883bacd1e3e54fc40726812237a1066c8f4
etag = 55bda8c781d56304e55d0da982a613bf877c69f604e535c3ffe4b41c454df4fe
weak
[file "src/Core/DisposableObject.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/DisposableObject.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 6c463a8bb34938152853feea21a08a60292d3ffb7c894ebb689f15d047bc0802
weak
[file "src/Core/PlatformUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/PlatformUtils.cs
sha = 59f01d9d737cd4b649c1596a81054e22b390fd32
etag = 9a2583672f4b82b9b3e18bbb13b5c83ffe3aa80db53083717df3d770c62f0cab
weak
[file "src/Core/Trace2Exception.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2Exception.cs
sha = 23997510a8cebb2e3494e9f6307b66bcfa13b6f5
etag = e79adb2b44d0ed5dd3feedd07689df6ab51f7aed487c1ced0d04be9c97732925
weak
[file "src/Core/Trace2FileWriter.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2FileWriter.cs
sha = 933bb26c9fa675732492eca8334db3f0dcb3d050
etag = 0d96497993637c9030895038c34eee99249e510ee8a8f00ee7ad0d265e6dfc35
weak
[file "src/Core/Trace2StreamWriter.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2StreamWriter.cs
sha = ec9359d15296eaaeac65056eb1b934a85680c898
etag = 739a550aef55822386820b8e9a4e35a7a00be51f83865e79592c3969d9e49252
weak
[file "src/Core/Trace2Message.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2Message.cs
sha = 865a3c52e0374b78f5cf29553d4c9f37799b050b
etag = 43c7b1db7ece0e09f8ed8576f1151bec9855f174eec33a881fc596418d4cfe08
weak
[file "src/Core/ITrace2Writer.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ITrace2Writer.cs
sha = 59a2692614fb3f1a8afdfeaa03f4d7e38318e648
etag = dd8851bb18d908dc790f6eb49326ac33325895ceaff4b43100ce4e18124303b8
weak
[file "src/Core/Settings.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Settings.cs
sha = 3183801eacdc6653e9046d9d2fbeb6c59efc8408
etag = 5d1ab8c9ff66e5ee63a530f64f4deb10d62f6032c8766ff1f451e066be6e2434
weak
[file "src/Core/PlaintextCredentialStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/PlaintextCredentialStore.cs
sha = e8b02e00891f718d8b9617d7944c523ebf17e60f
etag = 40dea3f67e29e27b9289ca3a0d8879dea85e057e77f3c3fb030260cb09fa399e
weak
[file "src/Core/ISystemPrompts.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ISystemPrompts.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 673adabdaa4e48aa4ce75b28145c113a6a905239c710e6dd0ad0de79e3cd9134
weak
[file "src/Core/Gpg.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Gpg.cs
sha = 40f75089539bd6908b88f3a6ae867003cd34126a
etag = 0e31e59cffabf4bcc13c98cf2ac5fd483e5c23a38782d44f6dbf2ea33e864843
weak
[file "src/Core/GitConfiguration.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/GitConfiguration.cs
sha = 336278cdd430a73139d685b1d81dfd6108797a97
etag = 4e90a0ab5f1d8406441525f2cb93e9ba945944d11fdc51dcc9f4812377d36ce8
weak
[file "src/Core/FileCredential.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/FileCredential.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = c6f8ec0141576d6fc00db4c4fc6f390c901576d9ab05aead2836fe62516d0693
weak
[file "src/Core/GitVersion.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/GitVersion.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 9ea13a9c4ca7e0938ea1b374104a4fa45f3e29f26b81acc90ddd427626b35551
weak
[file "src/Core/ChildProcess.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ChildProcess.cs
sha = 40f75089539bd6908b88f3a6ae867003cd34126a
etag = e09e721226f8c97b6481291a7d1486ccba656bfca69eace5cb637535a7d8850a
weak
[file "src/Core/GitConfigurationEntry.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/GitConfigurationEntry.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 74e4373ccff2f0f06c249c8300510286484efa9932031df1d5d82df357a077cb
weak
[file "src/Core/Constants.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Constants.cs
sha = a96afbb254675544a1f60cf7a6865b540785deac
etag = 16a1a9e8c14f9957145ed5b27ec7251902861178fae380929f55cc827b05f3fd
weak
[file "src/Core/ConvertUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/ConvertUtils.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 53cd52a712295538009308b0ce7cb008ab776f1a8b686f90b0ad6c783b2b02cd
weak
[file "src/Core/EnsureArgument.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/EnsureArgument.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 1930fdc866b9fa2228fdf338cb5a6420d775c8d7e3d321ff30c47535aeaa2115
weak
[file "src/Core/StringExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/StringExtensions.cs
sha = 7d2a8cc583a8aeae104c6cb144fde1328ef50cae
etag = f7b83bbe6f2c0d41b0f8b15f1be54d571ca0180e95ed4d016375c4f6b05ed800
weak
[file "src/Core/StreamExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/StreamExtensions.cs
sha = 93cada914ca47632dd6972e6f5d927eebe78ca37
etag = 9cc36b7d21782a7a42acd08526921a2dd2f106418d13b0ad49e1e4efa182cc1d
weak
[file "src/Core/Trace2CollectorWriter.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Trace2CollectorWriter.cs
sha = e9db80225e3961aa33442d0918827bf44176ded5
etag = 551cd3c933737a31c0e9cc6923eea89846146fa3072174667127b351db3847b7
weak
[file "src/Core/CurlCookie.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/CurlCookie.cs
sha = cebbc7342410e8f3f9c03eb42124ea7f78f0beb1
etag = 3f60948fc943c01317d5fc3901c5fee0eabda96945c0a210f9e07f36b49a9e0f
weak
[file "src/Core/WslUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/WslUtils.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = b5e18ee7a809623c704540c922d3fdca94ae72b97cf5b8562e232e41025dfd7c
weak
[file "src/Core/TraceUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/TraceUtils.cs
sha = c2366f7444e93600f6421da61e3773701f663e80
etag = 44b1a076f7212a0b2e22fefdd0430473cc0076db1371af54e69f7f4861010369
weak
[file "src/Core/GitConfigurationKeyComparer.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/GitConfigurationKeyComparer.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 6aa47b7ad804d36e31807eddd6c8297d9f3314d76e486e82824df493caeaa75a
weak
[file "src/Core/IniFile.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/IniFile.cs
sha = 6b887e1a28f8fcc876168a9f5b0f39b9ead3879d
etag = 34f073b3757e0d7b536de1efa9d4f994951f11ab0e755e0f7efb6015da035fc6
weak
[file "src/Core/CredentialStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/CredentialStore.cs
sha = a96afbb254675544a1f60cf7a6865b540785deac
etag = 6b67f3a4fcc2abbe2f0adee583449171ffa9a3892fcd28cb40b87ffb384abe22
weak
[file "src/Core/CredentialCacheStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/CredentialCacheStore.cs
sha = 28edc00ccca5cac29407687e09f6be4320f63f95
etag = 35ce2cdfa6252d82a900e35c5dcbae44397e386621c2a261622f73a2a594143d
weak
[file "src/Core/EncodingEx.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/EncodingEx.cs
sha = b8f4c28742268a7b5c783c1b302e12450ef7b8b1
etag = 62aedc21b88779f163601f289a557884d19a3c888cab3add58247a0dc3dd66ea
weak
[file "src/Core/BrowserUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/BrowserUtils.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = f9a39627fd901ab3d2070430b6c5db768398314645cefde773e3aaf43c89904d
weak
[file "src/Core/AssemblyUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/AssemblyUtils.cs
sha = 7cee518ca65a7d455d5c6fcbbad0402222d311b7
etag = 9a900d42799b17385cb34bd4742b4ba67fd6b332fc569b91a579f22e73173ae1
weak
[file "src/Core/Base64UrlConvert.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Base64UrlConvert.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 245a19ebb1c92ca2f5d90d6a7d1ad1409d2114b1dbd5f3a6304e6dd86292c622
weak
[file "src/Core/UriExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/UriExtensions.cs
sha = 62abc306bfa051ced74fb9e82a9db5b365aa57a8
etag = 313c8e305a46518dbb6e9ac462eba0254a6f22aeb5d691b1e656d1a60642bd4c
weak
[file "src/Core/DictionaryExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/DictionaryExtensions.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 752b70be414a32723694ce143c852e92baf8fd8b865a94f3b6382f47c95fa2e1
weak
[file "src/Core/NameValueCollectionExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/NameValueCollectionExtensions.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = ebc36bdebb0c2e2a5668b8641db5df33dc70f51b11d8e05ee54d5492ece5aa71
weak
[file "src/Core/HttpRequestExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/HttpRequestExtensions.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 86395d5341813a666be65cc17b651204e05959f79060c015f1edb6a98d33c85e
weak
[file ".github/workflows/triage.yml"]
url = https://github.com/devlooped/oss/blob/main/.github/workflows/triage.yml
sha = 33000c0c4ab4eb4e0e142fa54515b811a189d55c
etag = 013a47739e348f06891f37c45164478cca149854e6cd5c5158e6f073f852b61a
weak
[file "src/Core/Authentication/OAuth/HttpListenerExtensions.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/HttpListenerExtensions.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = a6ae61ce88ceb358eb66c51e70a7f8f33fbab4d054b1285706083c0c012064f2
weak
[file "src/Core/Authentication/OAuth/IOAuth2WebBrowser.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/IOAuth2WebBrowser.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 01968d1415a4c442dc85584255960f56905738856847610d7d485be3692b92b3
weak
[file "src/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs
sha = 71d03fb493060e75f9e45bf8b87a97582a51a7b2
etag = 525c9d16e0e14c00d3b5b99be72068d173d39f303e9a72619e7158093331428e
weak
[file "src/Core/Authentication/OAuth/Json/ErrorResponseJson.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Authentication/OAuth/Json/ErrorResponseJson.cs
sha = 71d03fb493060e75f9e45bf8b87a97582a51a7b2
etag = da7bd48c0d137f97c77b5daead4c0a51be52271ae6a0ceded3352bcaef9b15da
weak
[file "src/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs
sha = f1bed778d415cc67758952a9a17d56f0b611f626
etag = 2fc143bcb9d7a6b7ee021bc980f8ec3e60cf070697a4d60e0846a62c5abdc4f4
weak
[file "src/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 343a0d586b41b7152576114d241755e867a39007fd0236daafa4bd7a0c198931
weak
[file "src/Core/Authentication/OAuth/OAuth2Client.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2Client.cs
sha = 4e8674aeb62317641a5a53834563d48441cf4d95
etag = 118bf95993f7cf58dc2627b599b1d0b7915d7023ad0a4b515b2ba8c3f2df8d1a
weak
[file "src/Core/Authentication/OAuth/OAuth2Constants.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2Constants.cs
sha = 06a3edf16174d9a7ffbc29c56e8554197d96d8fa
etag = 9eca313464868508c8a9d6163415320f29912b8fd944e1838ba8cf9ddedfd373
weak
[file "src/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = c8c66d11b08f57cd6f1ced424d0f49cf340de3aee2f3dc724cd23f6ca77a5713
weak
[file "src/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = a49a6b19c24542663dd176f971ea46c8eb17473b5c1183219441e379a747ae7b
weak
[file "src/Core/Authentication/OAuth/OAuth2Exception.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2Exception.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = a5fac5128a0bc160e4fd95fdf9f115e2a80eaacb4f2e2a6129eebfe17ba1308a
weak
[file "src/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 957ea8a9567c7b7012a88a28cfc50c65f2002254e2e35eb2c0ff6c78d37c4331
weak
[file "src/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = f1dfa70e7f6096ef5a0fccc3d3737bcb4e22089dfeeb2afc6b3e722ca40da888
weak
[file "src/Core/Authentication/OAuth/OAuth2TokenResult.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Authentication/OAuth/OAuth2TokenResult.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 7942488c12152b9069d6cf11921fa0506b4a656628f2f96cad62ea91b1c165b6
weak
[file "src/Core/Interop/InteropException.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Interop/InteropException.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = f4a2b97bdc2307040e191943e20a408e1add3895eb8c2409659ce067251dca15
weak
[file "src/Core/Interop/InteropUtils.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Interop/InteropUtils.cs
sha = 43b5c5133780046ed42e94aa7eb9c94fd07afe40
etag = dca8d5613f5627ead2e2229f46d3db365cfe533e0677c32077fbc943d38b0ad0
weak
[file "src/Core/Interop/Linux/LinuxFileSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/LinuxFileSystem.cs
sha = ca19938cc0171e89245447be8e534ee93507ed6a
etag = 45542500a9797765b8cb91f4cc588af80ee1345050db2fadcb6edf71ce299d7b
weak
[file "src/Core/Interop/Linux/LinuxSessionManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/LinuxSessionManager.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = 84b54d3c5af611ac8410acffe5600b9644e359d64b33550259bf7ad1293c1dd0
weak
[file "src/Core/Interop/Linux/LinuxTerminal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/LinuxTerminal.cs
sha = 94f8d91eacc5ffc5037ab0d96337a531419b4021
etag = 7feccef50d58fd90c408910dd2e33e7226676b5cc2635c23a44649d57a776115
weak
[file "src/Core/Interop/Linux/Native/Glib.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/Native/Glib.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 5bc2ebdca310c5e15d1d6c7e3e4ca31942f44b4097a1285cdf8578de1b912efb
weak
[file "src/Core/Interop/Linux/Native/Gobject.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/Native/Gobject.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = e1382665b774a1bbb6bec13f90c8089d078df7dd3bb866c41f5b81ae4f9f1419
weak
[file "src/Core/Interop/Linux/Native/Libsecret.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/Native/Libsecret.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 8adee76b5d50c9ddec440987cf9a6111c296ea6095b72df92a1bb29327db3c31
weak
[file "src/Core/Interop/Linux/Native/termios_Linux.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/Native/termios_Linux.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 6df5d1e191d616cbff2fe3d71636c62674c577b6638add1cd42364ff24acd82d
weak
[file "src/Core/Interop/Linux/SecretServiceCollection.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/SecretServiceCollection.cs
sha = e8b02e00891f718d8b9617d7944c523ebf17e60f
etag = 972a9897b6965920d50df8ac0096fd20b19d5b8ca6ab47545efb13727c7f09d8
weak
[file "src/Core/Interop/Linux/SecretServiceCredential.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Linux/SecretServiceCredential.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 81f9f6596053c460f2985fb34f18c81bff20592da3b049ad8c6e22a8f0437dc7
weak
[file "src/Core/Interop/MacOS/MacOSEnvironment.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSEnvironment.cs
sha = a130fec718edbc83e8067f0cde58b1fd720ce087
etag = 632d1e96b5fd90a4f5c8bcc6d5301d0e6091730e6201474e42ee1c4881340450
weak
[file "src/Core/Interop/MacOS/MacOSFileSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSFileSystem.cs
sha = ca19938cc0171e89245447be8e534ee93507ed6a
etag = 35caf38c0f385f3b4c25be84b3c2e653aea3bfb01fc6e70b8c3a976bae40c0f9
weak
[file "src/Core/Interop/MacOS/MacOSKeychain.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSKeychain.cs
sha = e8b02e00891f718d8b9617d7944c523ebf17e60f
etag = b5620ea3389be1b835fea207842a003bf9454e0170b00ccd22472e0a9ce0f4fc
weak
[file "src/Core/Interop/MacOS/MacOSKeychainCredential.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSKeychainCredential.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = a779c3a8d51f10326eb557063f185276b2f78807e1bbe064876658561fdbcb22
weak
[file "src/Core/Interop/MacOS/MacOSSessionManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSSessionManager.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = a841138dad7dd688e2b6481f099b2f81d4caec1f57e1ff9d4f487f5fe5dd4bf1
weak
[file "src/Core/Interop/MacOS/MacOSTerminal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/MacOSTerminal.cs
sha = 94f8d91eacc5ffc5037ab0d96337a531419b4021
etag = 8781a490dcd3f396279f9de3d4a164cd36cc49044227494b974f0359d2aa365b
weak
[file "src/Core/Interop/MacOS/Native/CoreFoundation.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/Native/CoreFoundation.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 62b890c452dfaafdf8d681084b6625d146373ac2bb37c446defc70128dbb7179
weak
[file "src/Core/Interop/MacOS/Native/LibC.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/Native/LibC.cs
sha = 7366a54fef612322a8fcbe8c2b8c273e46737358
etag = 2f699a6798408046255138f57a090168028d4d41a00a78924b70dc66f4345cc5
weak
[file "src/Core/Interop/MacOS/Native/LibSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/Native/LibSystem.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = b498c2d322c4078bec002ac1b26335c37917231ca1dec6d04746411872de97a6
weak
[file "src/Core/Interop/MacOS/Native/SecurityFramework.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/Native/SecurityFramework.cs
sha = 28edc00ccca5cac29407687e09f6be4320f63f95
etag = 1fceccc37794b0938b6d5d01f48ead468d1956dff3c032edb998a1a9e85bdefc
weak
[file "src/Core/Interop/MacOS/Native/termios_MacOS.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/MacOS/Native/termios_MacOS.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = ff460668bc6e9f9d431ca4aa3e5ed6066453d411572fbc00b17ec2303aed1f9f
weak
[file "src/Core/Interop/Posix/GpgPassCredentialStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/GpgPassCredentialStore.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 29dbffffd90bd6167a3f6e6f52e0a918ee1447cf571da3257aaea077b2ea41e5
weak
[file "src/Core/Interop/Posix/Native/Fcntl.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Fcntl.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = dd87dc81c72259c941104f12199323916698f06bbdf7e157c895280ef147eb3e
weak
[file "src/Core/Interop/Posix/Native/Signal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Signal.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = aee509b4626bd9de0ee713ba08315e9c816bca7c90f7379ab4730bb7b3488e1c
weak
[file "src/Core/Interop/Posix/Native/Stat.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Stat.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 6d0d2b5deff0b6554cf2e8fcdba10717253a85aca9abeebde39b264cc39d452e
weak
[file "src/Core/Interop/Posix/Native/Stdio.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Stdio.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 03500cbe78f498f2d72fe86ffb05e9207022e8ff1898015903cba2aec16f5d1c
weak
[file "src/Core/Interop/Posix/Native/Stdlib.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Stdlib.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 1397abe89883a92138b9b011751c611e7e1a8ac3fa10a104e8c8e038789b1fba
weak
[file "src/Core/Interop/Posix/Native/Termios.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Termios.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = b86393bf808f9246e62f78bbdbe5e49fe13dc0a26f0fccb9fa71561c9e410020
weak
[file "src/Core/Interop/Posix/Native/Unistd.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/Native/Unistd.cs
sha = 7366a54fef612322a8fcbe8c2b8c273e46737358
etag = 3753d6444a3319b6bc35c7ab719d989bd2d79ff8e297247ce5dbe15d4a49a566
weak
[file "src/Core/Interop/Posix/PosixEnvironment.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/PosixEnvironment.cs
sha = a130fec718edbc83e8067f0cde58b1fd720ce087
etag = 12e8e06a15efbef40f84b7cf38432146d66416012dfbd8c47815dd279ed75d7e
weak
[file "src/Core/Interop/Posix/PosixFileDescriptor.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/PosixFileDescriptor.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 125d0a1c8ca34099eb44bccb0b5dfeece94186857dd485ab30ca48cd69e75665
weak
[file "src/Core/Interop/Posix/PosixFileSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/PosixFileSystem.cs
sha = ca19938cc0171e89245447be8e534ee93507ed6a
etag = 9d4c92402f7abcd44248d9029af7acd52395d0c15619e4bc8fa29acf86f2fcf3
weak
[file "src/Core/Interop/Posix/PosixSessionManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/PosixSessionManager.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = 6bd57a3335e1d5d594b32aa874c4185a870b25b98558d4da56a98c3660269857
weak
[file "src/Core/Interop/Posix/PosixTerminal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Posix/PosixTerminal.cs
sha = dfd3dadc75a823ccdd58222af2435bb811fc2ab0
etag = 45b94e78b9a3c918368421196073da6b178e9d4b846274d79d9ee4bd483c0f69
weak
[file "src/Core/Interop/U8StringConverter.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Interop/U8StringConverter.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 6c842097307e6fa8ea6f8b97f5deef4d33f3a7300c66566bedff7316baf3c089
weak
[file "src/Core/Interop/U8StringMarshaler.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/main/src/shared/Core/Interop/U8StringMarshaler.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = a1551b8a18fbb79a48a6d6e78a8202f5d0ba83e81bc1ec35dce7119cd43b8407
weak
[file "src/Core/Interop/Windows/DpapiCredentialStore.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/DpapiCredentialStore.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 80f94fbc0f53a91cc31db26114611f17372fa925734e647f081bfe2379814411
weak
[file "src/Core/Interop/Windows/Native/Advapi32.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/Advapi32.cs
sha = e0218ace4a93dcb152e528b24f600bed0ee8483c
etag = 4e799d8a0fb8841225668697344a55f0042763f63edb67290fe56bedfcce8fb4
weak
[file "src/Core/Interop/Windows/Native/CredUi.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/CredUi.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 40fd47027fe8477fab05a514a76b86beef9f6b4d9d6750454d06a0a638dc23a0
weak
[file "src/Core/Interop/Windows/Native/Kernel32.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/Kernel32.cs
sha = 134e622aefa7f334f656c3356120956c2997e595
etag = b2e62982877004fe44051a5a398fc725ac432c917a5baa24820323a2cbde5565
weak
[file "src/Core/Interop/Windows/Native/Ole32.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/Ole32.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = f8d11d3dc82d81f75f58198023073e640313b01954b47387c50f59981290447a
weak
[file "src/Core/Interop/Windows/Native/Shell32.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/Shell32.cs
sha = fa2cc1805a6f617d7e4dd242501fad860d5fbce2
etag = 8e8d401cedb13f66c314e7f695903d72a880802f00a8a6722dbd24c8dbffbdab
weak
[file "src/Core/Interop/Windows/Native/User32.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/User32.cs
sha = 134e622aefa7f334f656c3356120956c2997e595
etag = 73f2ef305aa6614bc3f9d81933fa9c2148c77ab5b7fc3254f4d8084bdc011ff2
weak
[file "src/Core/Interop/Windows/Native/Win32Error.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/Native/Win32Error.cs
sha = 94f8d91eacc5ffc5037ab0d96337a531419b4021
etag = a067404240ae5a98728e74994a426ee85fae5421b573e8658adbaa3034562a4d
weak
[file "src/Core/Interop/Windows/WindowsCredential.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsCredential.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = d9bb85480d058d90c08096b5dfabf4d51934a155627218ec7aceaa67f7dc964d
weak
[file "src/Core/Interop/Windows/WindowsCredentialManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsCredentialManager.cs
sha = e8b02e00891f718d8b9617d7944c523ebf17e60f
etag = 3c1ba5e089f75be24172e73767805ca16200230a725f8390c8d1866d9c7a876b
weak
[file "src/Core/Interop/Windows/WindowsEnvironment.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsEnvironment.cs
sha = a130fec718edbc83e8067f0cde58b1fd720ce087
etag = 905ca0898944337420aab8f31e6dc3babc54f1921c8d9346f58f785ff2e7fbf1
weak
[file "src/Core/Interop/Windows/WindowsFileSystem.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsFileSystem.cs
sha = ca19938cc0171e89245447be8e534ee93507ed6a
etag = aff622066a29a9b90e6c77ef75206cf8fde7627a4d6c9ff88e0c3126e9a0df2b
weak
[file "src/Core/Interop/Windows/WindowsProcessManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsProcessManager.cs
sha = d1b64ccd07239bdb8de4b732e9963753d4e89a62
etag = fc48908142dff5de467bfdbe61d7e026cc463d2abefaa92f39301e4b43b56540
weak
[file "src/Core/Interop/Windows/WindowsSessionManager.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsSessionManager.cs
sha = d0b767b37d6e6fa42b7c738a3729cdfc41e1c0d1
etag = 64ea73ae307d85e4f2e8d69c130454743cc9587a67cc0c1242d4a65f03fd2f32
weak
[file "src/Core/Interop/Windows/WindowsSettings.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsSettings.cs
sha = 8122dc0c8fdff17654ce3dea17b3a6fb0c899fff
etag = 723171f86db2ec3eb329eed519d74078c75571c44a16eb23b0b95063306b105d
weak
[file "src/Core/Interop/Windows/WindowsSystemPrompts.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsSystemPrompts.cs
sha = c91294385db910f8dd15c0345e100cd034e6482f
etag = 4e9d2b7252fd16b25dd68daa1dc2703f39cfe223a97b7629d6d93a1b318d1ed5
weak
[file "src/Core/Interop/Windows/WindowsTerminal.cs"]
url = https://github.com/git-ecosystem/git-credential-manager/blob/v2.6.0/src/shared/Core/Interop/Windows/WindowsTerminal.cs
sha = 94f8d91eacc5ffc5037ab0d96337a531419b4021
etag = 6ee21893c4a201ba834c9749b5518fb25f5702e7c4a29c68d3abd5cdf547301e
weak
[file "src/SponsorLink/Analyzer/Analyzer.csproj"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/Analyzer.csproj
sha = efdaa7c93cca3bed49aafdca4a1f29e85126c94f
etag = 3a15ca6d1eec97f5280de063a3463dd24eafe47a8a9ac193bc0ecb2603643b6e
weak
[file "src/SponsorLink/Analyzer/GraceApiAnalyzer.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/GraceApiAnalyzer.cs
sha = 4638da914b0527c156227f3705ca60a85c1871e4
etag = 6603b004f41e023d03b86f175d9fc4e0a462d1b2519406e46b4831e36c378e6f
weak
[file "src/SponsorLink/Analyzer/Properties/launchSettings.json"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/Properties/launchSettings.json
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 6c59ab4d008e3221e316c9e3b6e0da155b892680d48cdc400a39d53cb9a12aac
weak
[file "src/SponsorLink/Analyzer/StatusReportingAnalyzer.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/StatusReportingAnalyzer.cs
sha = eceeb2c5596285c95db4d1a031cc36238a7cd22d
etag = db37e051eeea1a0e368ccc8bfdf59c373486a583c57ad8301d6be9ab21da4e0d
weak
[file "src/SponsorLink/Analyzer/StatusReportingGenerator.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/StatusReportingGenerator.cs
sha = 08d80dd734525b1e6f46adbffd2aab77d73afb71
etag = 09f466f0a23877a980ec01a7b15330c6c36c44960028188d826a8ef48f8756aa
weak
[file "src/SponsorLink/Analyzer/buildTransitive/SponsorableLib.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Analyzer/buildTransitive/SponsorableLib.targets
sha = eceeb2c5596285c95db4d1a031cc36238a7cd22d
etag = 727bd941b7a8be190c7f17a41c791ef2248be5e25a36460a0457bc080a7d4503
weak
[file "src/SponsorLink/Directory.Build.props"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Directory.Build.props
sha = 7b5109b5b5a53a2cc16759b776c4a092aec5ca57
etag = 5d4e433c71291ea953d328aa26b2d93cdf4708271f0eb024138ba2e0db93ab15
weak
[file "src/SponsorLink/Directory.Build.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Directory.Build.targets
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 9938f29c3573bf8bdb9686e1d9884dee177256b1d5dd7ee41472dd64bfbdd92d
weak
[file "src/SponsorLink/Library/Library.csproj"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/Library.csproj
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 06a4ffe0d8f24f795a484b1e86bcbad538437d819c41dd1ae0e5184a1e4a7d31
weak
[file "src/SponsorLink/Library/MyClass.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/MyClass.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = b5b3ccd6cd14bb90dd9702b9d7e52cc22c11e601c039617738d688f9fd45d49b
weak
[file "src/SponsorLink/Library/Resources.resx"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/Resources.resx
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = aff6051733d22982e761f2b414173aafeab40e0a76a142e2b33025dced213eb2
weak
[file "src/SponsorLink/Library/readme.md"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Library/readme.md
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 5002ac8c5bbeee60c13937a32c1b6c1a5dbf0065617c8f2550e6eca6fded256d
weak
[file "src/SponsorLink/SponsorLink.Analyzer.Tests.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.Tests.targets
sha = 058dbbc3582042d7fdcaf5741db59d2b46ea1222
etag = 2d8bac60892b5565e3419b1fa775c5b977af202304ef3c25a4c6d04c7ac9faf1
weak
[file "src/SponsorLink/SponsorLink.Analyzer.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.targets
sha = efdaa7c93cca3bed49aafdca4a1f29e85126c94f
etag = 96480c337e10cdca35957d41b651879b146da30a6e6db234f2bb6f09e88e3a7f
weak
[file "src/SponsorLink/SponsorLink/AnalyzerOptionsExtensions.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/AnalyzerOptionsExtensions.cs
sha = 38a11504cc9cbd994fb7380fd580102e7514b3b5
etag = 9d0e3495b4db00915f79f7e0549b20f2ffff38865741a69810251550686102cc
weak
[file "src/SponsorLink/SponsorLink/AppDomainDictionary.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/AppDomainDictionary.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 4a70f86e73f951bca95618c221d821e38a31ef9092af4ac61447eab845671a28
weak
[file "src/SponsorLink/SponsorLink/DiagnosticsManager.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/DiagnosticsManager.cs
sha = 29921560c73bb91c2a21a21800daf0b250773598
etag = a5d79dbc0ed9fac4fb1879fb3790b9ebab18e47c14c454554ce9f53f21487bb5
weak
[file "src/SponsorLink/SponsorLink/ManifestStatus.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/ManifestStatus.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = e46848f83c0436ba33a1c09a4060ad627a74db41bab66bb37ca40fce8a6532a7
weak
[file "src/SponsorLink/SponsorLink/Resources.es-AR.resx"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es-AR.resx
sha = 586398c3e650495f36601ecc8983a14ed745e058
etag = 1d6ca61601815a20581fc13f9efdad151ee0e5cf952318723265d5c183d3e1cc
weak
[file "src/SponsorLink/SponsorLink/Resources.es.resx"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es.resx
sha = 29921560c73bb91c2a21a21800daf0b250773598
etag = feb9dc86e4d9c0c4a294cd6e03c5b914943e8d206b88a125abd1b0f882ddb247
weak
[file "src/SponsorLink/SponsorLink/Resources.resx"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.resx
sha = 29921560c73bb91c2a21a21800daf0b250773598
etag = 7665a3be17cd224b1c413ade6a9c1c5a822dace1e7f9daae33a2e52d8bca15bb
weak
[file "src/SponsorLink/SponsorLink/SponsorLink.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.cs
sha = efda32a6eaaeffa485fb480e31adfd2f8130bd48
etag = 555128f4279241225b4dc8bb2ec8835894edfe9f6b9223399ee8cb3dc7adaf06
weak
[file "src/SponsorLink/SponsorLink/SponsorLink.csproj"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.csproj
sha = 46e9abe02e5a6abadda66ef050ddc5b9859aa2b8
etag = 9674d70c0042b3b973846d5252d6861a981e1e7b84bc806a8d20698ba0c27481
weak
[file "src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLinkAnalyzer.cs
sha = 46e9abe02e5a6abadda66ef050ddc5b9859aa2b8
etag = 062a02b6eb45e5e49cc73c77c25d66bf2695fc365e13ce7dc39f813a030fc370
weak
[file "src/SponsorLink/SponsorLink/SponsorStatus.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorStatus.cs
sha = 29921560c73bb91c2a21a21800daf0b250773598
etag = 419a823edb42d9175ae96d66a8b0191d8fc91921268c2a5340cf8d34519d4535
weak
[file "src/SponsorLink/SponsorLink/SponsorableLib.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorableLib.targets
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 2f923a97081481a6a264d63c8ff70ce5ba65c3dbaf7ea078cbe1388fb0868e1c
weak
[file "src/SponsorLink/SponsorLink/Tracing.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Tracing.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 29d6c0362f4c47eedfebea5018d563adb04a8f7b30da87495c5c8a4561e2c4ed
weak
[file "src/SponsorLink/SponsorLink/buildTransitive/Devlooped.Sponsors.targets"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/buildTransitive/Devlooped.Sponsors.targets
sha = d7090c1dbcb20c68b99486a6dc53d86b8d9b06bb
etag = e992b97517c9bcc6c9e927832bc13fac3036fa6d4ecaad893caf320b3c582aee
weak
[file "src/SponsorLink/SponsorLink/sponsorable.md"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/sponsorable.md
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 9c275d50705a2e661f0f86f1ae5e555c0033a05e86e12f936283a5b5ef47ae77
weak
[file "src/SponsorLink/SponsorLinkAnalyzer.sln"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLinkAnalyzer.sln
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = fc2928c9b303d81ff23891ee791a859b794d9f2d4b9f4e81b9ed15e5b74db487
weak
[file "src/SponsorLink/Tests/.netconfig"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/.netconfig
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 0323e19eb4582113dd409853ba83e9845069bf35733ed84a0bdc9fb6990502a9
weak
[file "src/SponsorLink/Tests/AnalyzerTests.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/AnalyzerTests.cs
sha = 29921560c73bb91c2a21a21800daf0b250773598
etag = 219df696a47a58d9de377166c87fbb199c84c33d3b7a0f7ae349543df050a583
weak
[file "src/SponsorLink/Tests/Attributes.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Attributes.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 1d7c17a2c9424db73746112c338a39e0000134ac878b398e2aa88f7ea5c0c488
weak
[file "src/SponsorLink/Tests/Extensions.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Extensions.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 9e51b7e6540fae140490a5283b1e67ce071bd18a267bc2ae0b35c7248261aed1
weak
[file "src/SponsorLink/Tests/JsonOptions.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/JsonOptions.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 17799725ad9b24eb5998365962c30b9a487bddadca37c616e35b76b8c9eb161a
weak
[file "src/SponsorLink/Tests/Resources.resx"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Resources.resx
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 13d1bb8b0de32a8c9b5dbdc806a036ed89d423cd7c0be187b8c56055c9bf7783
weak
[file "src/SponsorLink/Tests/Sample.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Sample.cs
sha = ca82a9d6298a933192c5dfd2c5881ebadb85d0fe
etag = 1875555adb7eab21acf1e730b6baeb8c095d9f6f9f07303a87ad9c16e0f6490d
weak
[file "src/SponsorLink/Tests/SponsorLinkTests.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorLinkTests.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 1fa41250bd984e8aa840a966d34ce0e94f2111d1422d7f50b864c38364fcf4a4
weak
[file "src/SponsorLink/Tests/SponsorableManifest.cs"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorableManifest.cs
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = eb2292c6d7bf53a56acbb73d7c89ccc78fd8bec2e2198d70e36da93c01d36374
weak
[file "src/SponsorLink/Tests/Tests.csproj"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Tests.csproj
sha = eceeb2c5596285c95db4d1a031cc36238a7cd22d
etag = ce125080f1a10d94caecf0c93840a3e2878bf73b83526aaa9a569f91414cf2be
weak
[file "src/SponsorLink/Tests/keys/kzu.key"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.key
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = bd8f5b16d248829e9cf4d8695677b2b7c09607d2b50b1cda05dbaa48c2a3fe04
weak
[file "src/SponsorLink/Tests/keys/kzu.key.jwk"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.key.jwk
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = dca60d636ab866adf211662a5aa597e4d1f477a280f6ee82cd7f7b390535a458
weak
[file "src/SponsorLink/Tests/keys/kzu.key.txt"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.key.txt
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 7553487806f6dbd219b4dbda5d6fb097b8047a1d1856255a339e049c7496da43
weak
[file "src/SponsorLink/Tests/keys/kzu.pub"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.pub
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 75c544bb911372c909a58d6d07e89abe776ef618861f6d580915b0e79c6bb2fe
weak
[file "src/SponsorLink/Tests/keys/kzu.pub.jwk"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.pub.jwk
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 9a2829bf01fe53089c0f4ff46f5bca60955338bbfc7a2354482cde05dc750806
weak
[file "src/SponsorLink/Tests/keys/kzu.pub.txt"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.pub.txt
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = 6308869899eb7efeee34dc4daa71ee04a06f21cc09199beb74a78af8e213f576
weak
[file "src/SponsorLink/Tests/keys/sponsorlink.jwt"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/sponsorlink.jwt
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = af05cc803434a0e22b67521be8bb66676c5c0ca0795afb4430bd26751ce307e1
weak
[file "src/SponsorLink/jwk.ps1"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/jwk.ps1
sha = f47528874a6d9192b5546f84b455f5ccc474a707
etag = f399e05ecb56adaf41d2545171f299a319142b17dd09fc38e452ca8c5d13bd0d
weak
[file "src/SponsorLink/readme.md"]
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/readme.md
sha = 7407f5b3461213ae764f53ee93651a34487e458c
etag = 50937c64732bb2b97ddc67cc7b7b2d091c51390c9f5f2b5fdcfe9f1becb5d838
weak