forked from abpframework/abp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVolo.Abp.abpmdl
846 lines (846 loc) · 31.9 KB
/
Volo.Abp.abpmdl
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
{
"folders": {
"items": {
"test": {},
"src": {}
}
},
"packages": {
"AbpTestBase": {
"path": "test/AbpTestBase/AbpTestBase.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore": {
"path": "src/Volo.Abp.AspNetCore/Volo.Abp.AspNetCore.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Tests": {
"path": "test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MultiTenancy.Tests": {
"path": "test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.MultiTenancy": {
"path": "src/Volo.Abp.AspNetCore.MultiTenancy/Volo.Abp.AspNetCore.MultiTenancy.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.MultiTenancy.Tests": {
"path": "test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.TestBase": {
"path": "src/Volo.Abp.AspNetCore.TestBase/Volo.Abp.AspNetCore.TestBase.abppkg.json",
"folder": "src"
},
"Volo.Abp.EntityFrameworkCore": {
"path": "src/Volo.Abp.EntityFrameworkCore/Volo.Abp.EntityFrameworkCore.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc": {
"path": "src/Volo.Abp.AspNetCore.Mvc/Volo.Abp.AspNetCore.Mvc.abppkg.json",
"folder": "src"
},
"Volo.Abp.TestBase": {
"path": "src/Volo.Abp.TestBase/Volo.Abp.TestBase.abppkg.json",
"folder": "src"
},
"Volo.Abp.MongoDB": {
"path": "src/Volo.Abp.MongoDB/Volo.Abp.MongoDB.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Bootstrap": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.abppkg.json",
"folder": "src"
},
"Volo.Abp.Autofac": {
"path": "src/Volo.Abp.Autofac/Volo.Abp.Autofac.abppkg.json",
"folder": "src"
},
"Volo.Abp.Castle.Core": {
"path": "src/Volo.Abp.Castle.Core/Volo.Abp.Castle.Core.abppkg.json",
"folder": "src"
},
"Volo.Abp.Autofac.Tests": {
"path": "test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Castle.Core.Tests": {
"path": "test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AutoMapper": {
"path": "src/Volo.Abp.AutoMapper/Volo.Abp.AutoMapper.abppkg.json",
"folder": "src"
},
"Volo.Abp.AutoMapper.Tests": {
"path": "test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Mvc.Tests": {
"path": "test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.TestApp": {
"path": "test/Volo.Abp.TestApp/Volo.Abp.TestApp.abppkg.json",
"folder": "test"
},
"Volo.Abp.MemoryDb": {
"path": "src/Volo.Abp.MemoryDb/Volo.Abp.MemoryDb.abppkg.json",
"folder": "src"
},
"Volo.Abp.MemoryDb.Tests": {
"path": "test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.TestApp.Tests": {
"path": "test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http": {
"path": "src/Volo.Abp.Http/Volo.Abp.Http.abppkg.json",
"folder": "src"
},
"Volo.Abp.Http.Client": {
"path": "src/Volo.Abp.Http.Client/Volo.Abp.Http.Client.abppkg.json",
"folder": "src"
},
"Volo.Abp.Http.Client.Tests": {
"path": "test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.Tests": {
"path": "test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.abppkg.json",
"folder": "test"
},
"SimpleConsoleDemo": {
"path": "test/SimpleConsoleDemo/SimpleConsoleDemo.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.Tests.SecondContext": {
"path": "test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Mvc.Versioning.Tests": {
"path": "test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.VirtualFileSystem": {
"path": "src/Volo.Abp.VirtualFileSystem/Volo.Abp.VirtualFileSystem.abppkg.json",
"folder": "src"
},
"Volo.Abp.VirtualFileSystem.Tests": {
"path": "test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Core": {
"path": "src/Volo.Abp.Core/Volo.Abp.Core.abppkg.json",
"folder": "src"
},
"Volo.Abp.Localization": {
"path": "src/Volo.Abp.Localization/Volo.Abp.Localization.abppkg.json",
"folder": "src"
},
"Volo.Abp.Localization.Tests": {
"path": "test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Core.Tests": {
"path": "test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.ApiVersioning.Abstractions": {
"path": "src/Volo.Abp.ApiVersioning.Abstractions/Volo.Abp.ApiVersioning.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.Data": {
"path": "src/Volo.Abp.Data/Volo.Abp.Data.abppkg.json",
"folder": "src"
},
"Volo.Abp.Data.Tests": {
"path": "test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MultiTenancy": {
"path": "src/Volo.Abp.MultiTenancy/Volo.Abp.MultiTenancy.abppkg.json",
"folder": "src"
},
"Volo.Abp.ObjectMapping": {
"path": "src/Volo.Abp.ObjectMapping/Volo.Abp.ObjectMapping.abppkg.json",
"folder": "src"
},
"Volo.Abp.Validation": {
"path": "src/Volo.Abp.Validation/Volo.Abp.Validation.abppkg.json",
"folder": "src"
},
"Volo.Abp.Validation.Tests": {
"path": "test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Security": {
"path": "src/Volo.Abp.Security/Volo.Abp.Security.abppkg.json",
"folder": "src"
},
"Volo.Abp.Guids": {
"path": "src/Volo.Abp.Guids/Volo.Abp.Guids.abppkg.json",
"folder": "src"
},
"Volo.Abp.Threading": {
"path": "src/Volo.Abp.Threading/Volo.Abp.Threading.abppkg.json",
"folder": "src"
},
"Volo.Abp.Ddd.Tests": {
"path": "test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http.Abstractions": {
"path": "src/Volo.Abp.Http.Abstractions/Volo.Abp.Http.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.Authorization": {
"path": "src/Volo.Abp.Authorization/Volo.Abp.Authorization.abppkg.json",
"folder": "src"
},
"Volo.Abp.Json": {
"path": "src/Volo.Abp.Json/Volo.Abp.Json.abppkg.json",
"folder": "src"
},
"Volo.Abp.Timing": {
"path": "src/Volo.Abp.Timing/Volo.Abp.Timing.abppkg.json",
"folder": "src"
},
"Volo.Abp.UI": {
"path": "src/Volo.Abp.UI/Volo.Abp.UI.abppkg.json",
"folder": "src"
},
"Volo.Abp.UI.Navigation": {
"path": "src/Volo.Abp.UI.Navigation/Volo.Abp.UI.Navigation.abppkg.json",
"folder": "src"
},
"Volo.Abp.UI.Navigation.Tests": {
"path": "test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Settings": {
"path": "src/Volo.Abp.Settings/Volo.Abp.Settings.abppkg.json",
"folder": "src"
},
"Volo.Abp.Caching": {
"path": "src/Volo.Abp.Caching/Volo.Abp.Caching.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus": {
"path": "src/Volo.Abp.EventBus/Volo.Abp.EventBus.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Tests": {
"path": "test/Volo.Abp.EventBus.Tests/Volo.Abp.EventBus.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Caching.Tests": {
"path": "test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Serialization": {
"path": "src/Volo.Abp.Serialization/Volo.Abp.Serialization.abppkg.json",
"folder": "src"
},
"Volo.Abp.Serialization.Tests": {
"path": "test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Authorization.Tests": {
"path": "test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Authentication.OAuth": {
"path": "src/Volo.Abp.AspNetCore.Authentication.OAuth/Volo.Abp.AspNetCore.Authentication.OAuth.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Authentication.OAuth.Tests": {
"path": "test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Uow": {
"path": "src/Volo.Abp.Uow/Volo.Abp.Uow.abppkg.json",
"folder": "src"
},
"Volo.Abp.Uow.Tests": {
"path": "test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Ddd.Domain": {
"path": "src/Volo.Abp.Ddd.Domain/Volo.Abp.Ddd.Domain.abppkg.json",
"folder": "src"
},
"Volo.Abp.Ddd.Application": {
"path": "src/Volo.Abp.Ddd.Application/Volo.Abp.Ddd.Application.abppkg.json",
"folder": "src"
},
"Volo.Abp.Auditing": {
"path": "src/Volo.Abp.Auditing/Volo.Abp.Auditing.abppkg.json",
"folder": "src"
},
"Volo.Abp.Auditing.Tests": {
"path": "test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MongoDB.Tests": {
"path": "test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.SqlServer": {
"path": "src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo.Abp.EntityFrameworkCore.SqlServer.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.RabbitMQ": {
"path": "src/Volo.Abp.EventBus.RabbitMQ/Volo.Abp.EventBus.RabbitMQ.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Tests": {
"path": "test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Emailing": {
"path": "src/Volo.Abp.Emailing/Volo.Abp.Emailing.abppkg.json",
"folder": "src"
},
"Volo.Abp.Sms": {
"path": "src/Volo.Abp.Sms/Volo.Abp.Sms.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Bundling": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo.Abp.AspNetCore.Mvc.UI.Bundling.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Packages": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo.Abp.AspNetCore.Mvc.UI.Packages.abppkg.json",
"folder": "src"
},
"Volo.Abp.EntityFrameworkCore.MySQL": {
"path": "src/Volo.Abp.EntityFrameworkCore.MySQL/Volo.Abp.EntityFrameworkCore.MySQL.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundJobs": {
"path": "src/Volo.Abp.BackgroundJobs/Volo.Abp.BackgroundJobs.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundWorkers": {
"path": "src/Volo.Abp.BackgroundWorkers/Volo.Abp.BackgroundWorkers.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundJobs.Tests": {
"path": "test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BackgroundJobs.Abstractions": {
"path": "src/Volo.Abp.BackgroundJobs.Abstractions/Volo.Abp.BackgroundJobs.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundJobs.HangFire": {
"path": "src/Volo.Abp.BackgroundJobs.HangFire/Volo.Abp.BackgroundJobs.HangFire.abppkg.json",
"folder": "src"
},
"Volo.Abp.HangFire": {
"path": "src/Volo.Abp.HangFire/Volo.Abp.HangFire.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundJobs.RabbitMQ": {
"path": "src/Volo.Abp.BackgroundJobs.RabbitMQ/Volo.Abp.BackgroundJobs.RabbitMQ.abppkg.json",
"folder": "src"
},
"Volo.Abp.RabbitMQ": {
"path": "src/Volo.Abp.RabbitMQ/Volo.Abp.RabbitMQ.abppkg.json",
"folder": "src"
},
"Volo.Abp.Emailing.Tests": {
"path": "test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.abppkg.json",
"folder": "src"
},
"Volo.Abp.EntityFrameworkCore.PostgreSql": {
"path": "src/Volo.Abp.EntityFrameworkCore.PostgreSql/Volo.Abp.EntityFrameworkCore.PostgreSql.abppkg.json",
"folder": "src"
},
"Volo.Abp.Localization.Abstractions": {
"path": "src/Volo.Abp.Localization.Abstractions/Volo.Abp.Localization.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.Security.Tests": {
"path": "test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Settings.Tests": {
"path": "test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http.Client.IdentityModel": {
"path": "src/Volo.Abp.Http.Client.IdentityModel/Volo.Abp.Http.Client.IdentityModel.abppkg.json",
"folder": "src"
},
"Volo.Abp.IdentityModel": {
"path": "src/Volo.Abp.IdentityModel/Volo.Abp.IdentityModel.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.Client": {
"path": "src/Volo.Abp.AspNetCore.Mvc.Client/Volo.Abp.AspNetCore.Mvc.Client.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.Contracts": {
"path": "src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo.Abp.AspNetCore.Mvc.Contracts.abppkg.json",
"folder": "src"
},
"Volo.Abp.Features": {
"path": "src/Volo.Abp.Features/Volo.Abp.Features.abppkg.json",
"folder": "src"
},
"Volo.Abp.Features.Tests": {
"path": "test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Authentication.JwtBearer": {
"path": "src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Volo.Abp.AspNetCore.Authentication.JwtBearer.abppkg.json",
"folder": "src"
},
"Volo.Abp.Cli": {
"path": "src/Volo.Abp.Cli/Volo.Abp.Cli.abppkg.json",
"folder": "src"
},
"Volo.Abp.FluentValidation": {
"path": "src/Volo.Abp.FluentValidation/Volo.Abp.FluentValidation.abppkg.json",
"folder": "src"
},
"Volo.Abp.FluentValidation.Tests": {
"path": "test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.Sqlite": {
"path": "src/Volo.Abp.EntityFrameworkCore.Sqlite/Volo.Abp.EntityFrameworkCore.Sqlite.abppkg.json",
"folder": "src"
},
"Volo.Abp.Cli.Core": {
"path": "src/Volo.Abp.Cli.Core/Volo.Abp.Cli.Core.abppkg.json",
"folder": "src"
},
"Volo.Abp.Specifications": {
"path": "src/Volo.Abp.Specifications/Volo.Abp.Specifications.abppkg.json",
"folder": "src"
},
"Volo.Abp.Specifications.Tests": {
"path": "test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Cli.Core.Tests": {
"path": "test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Mvc.UI.Widgets": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Widgets/Volo.Abp.AspNetCore.Mvc.UI.Widgets.abppkg.json",
"folder": "src"
},
"Volo.Abp.Ldap": {
"path": "src/Volo.Abp.Ldap/Volo.Abp.Ldap.abppkg.json",
"folder": "src"
},
"Volo.Abp.Ldap.Tests": {
"path": "test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Dapper": {
"path": "src/Volo.Abp.Dapper/Volo.Abp.Dapper.abppkg.json",
"folder": "src"
},
"Volo.Abp.Dapper.Tests": {
"path": "test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MailKit": {
"path": "src/Volo.Abp.MailKit/Volo.Abp.MailKit.abppkg.json",
"folder": "src"
},
"Volo.Abp.MailKit.Tests": {
"path": "test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.ObjectMapping.Tests": {
"path": "test/Volo.Abp.ObjectMapping.Tests/Volo.Abp.ObjectMapping.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Ddd.Application.Contracts": {
"path": "src/Volo.Abp.Ddd.Application.Contracts/Volo.Abp.Ddd.Application.Contracts.abppkg.json",
"folder": "src"
},
"Volo.Abp.Minify": {
"path": "src/Volo.Abp.Minify/Volo.Abp.Minify.abppkg.json",
"folder": "src"
},
"Volo.Abp.Minify.Tests": {
"path": "test/Volo.Abp.Minify.Tests/Volo.Abp.Minify.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Serilog": {
"path": "src/Volo.Abp.AspNetCore.Serilog/Volo.Abp.AspNetCore.Serilog.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Serilog.Tests": {
"path": "test/Volo.Abp.AspNetCore.Serilog.Tests/Volo.Abp.AspNetCore.Serilog.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http.Client.IdentityModel.Web": {
"path": "src/Volo.Abp.Http.Client.IdentityModel.Web/Volo.Abp.Http.Client.IdentityModel.Web.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundJobs.Quartz": {
"path": "src/Volo.Abp.BackgroundJobs.Quartz/Volo.Abp.BackgroundJobs.Quartz.abppkg.json",
"folder": "src"
},
"Volo.Abp.Quartz": {
"path": "src/Volo.Abp.Quartz/Volo.Abp.Quartz.abppkg.json",
"folder": "src"
},
"Volo.Abp.BackgroundWorkers.Quartz": {
"path": "src/Volo.Abp.BackgroundWorkers.Quartz/Volo.Abp.BackgroundWorkers.Quartz.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.abppkg.json",
"folder": "src"
},
"Volo.Abp.Http.Client.IdentityModel.Web.Tests": {
"path": "test/Volo.Abp.Http.Client.IdentityModel.Web.Tests/Volo.Abp.Http.Client.IdentityModel.Web.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.ObjectExtending": {
"path": "src/Volo.Abp.ObjectExtending/Volo.Abp.ObjectExtending.abppkg.json",
"folder": "src"
},
"Volo.Abp.ObjectExtending.Tests": {
"path": "test/Volo.Abp.ObjectExtending.Tests/Volo.Abp.ObjectExtending.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.TextTemplating": {
"path": "src/Volo.Abp.TextTemplating/Volo.Abp.TextTemplating.abppkg.json",
"folder": "src"
},
"Volo.Abp.TextTemplating.Tests": {
"path": "test/Volo.Abp.TextTemplating.Tests/Volo.Abp.TextTemplating.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Validation.Abstractions": {
"path": "src/Volo.Abp.Validation.Abstractions/Volo.Abp.Validation.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.SignalR": {
"path": "src/Volo.Abp.AspNetCore.SignalR/Volo.Abp.AspNetCore.SignalR.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.SignalR.Tests": {
"path": "test/Volo.Abp.AspNetCore.SignalR.Tests/Volo.Abp.AspNetCore.SignalR.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests": {
"path": "test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BlobStoring": {
"path": "src/Volo.Abp.BlobStoring/Volo.Abp.BlobStoring.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Tests": {
"path": "test/Volo.Abp.BlobStoring.Tests/Volo.Abp.BlobStoring.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BlobStoring.FileSystem": {
"path": "src/Volo.Abp.BlobStoring.FileSystem/Volo.Abp.BlobStoring.FileSystem.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.FileSystem.Tests": {
"path": "test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo.Abp.BlobStoring.FileSystem.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.Oracle.Devart": {
"path": "src/Volo.Abp.EntityFrameworkCore.Oracle.Devart/Volo.Abp.EntityFrameworkCore.Oracle.Devart.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Azure": {
"path": "src/Volo.Abp.BlobStoring.Azure/Volo.Abp.BlobStoring.Azure.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Azure.Tests": {
"path": "test/Volo.Abp.BlobStoring.Azure.Tests/Volo.Abp.BlobStoring.Azure.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BlobStoring.Minio": {
"path": "src/Volo.Abp.BlobStoring.Minio/Volo.Abp.BlobStoring.Minio.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Minio.Tests": {
"path": "test/Volo.Abp.BlobStoring.Minio.Tests/Volo.Abp.BlobStoring.Minio.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.EntityFrameworkCore.Oracle": {
"path": "src/Volo.Abp.EntityFrameworkCore.Oracle/Volo.Abp.EntityFrameworkCore.Oracle.abppkg.json",
"folder": "src"
},
"Volo.Abp.Caching.StackExchangeRedis": {
"path": "src/Volo.Abp.Caching.StackExchangeRedis/Volo.Abp.Caching.StackExchangeRedis.abppkg.json",
"folder": "src"
},
"Volo.Abp.Caching.StackExchangeRedis.Tests": {
"path": "test/Volo.Abp.Caching.StackExchangeRedis.Tests/Volo.Abp.Caching.StackExchangeRedis.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BlobStoring.Aliyun": {
"path": "src/Volo.Abp.BlobStoring.Aliyun/Volo.Abp.BlobStoring.Aliyun.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Aliyun.Tests": {
"path": "test/Volo.Abp.BlobStoring.Aliyun.Tests/Volo.Abp.BlobStoring.Aliyun.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BlobStoring.Aws": {
"path": "src/Volo.Abp.BlobStoring.Aws/Volo.Abp.BlobStoring.Aws.abppkg.json",
"folder": "src"
},
"Volo.Abp.BlobStoring.Aws.Tests": {
"path": "test/Volo.Abp.BlobStoring.Aws.Tests/Volo.Abp.BlobStoring.Aws.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Kafka": {
"path": "src/Volo.Abp.Kafka/Volo.Abp.Kafka.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Kafka": {
"path": "src/Volo.Abp.EventBus.Kafka/Volo.Abp.EventBus.Kafka.abppkg.json",
"folder": "src"
},
"Volo.Abp.GlobalFeatures": {
"path": "src/Volo.Abp.GlobalFeatures/Volo.Abp.GlobalFeatures.abppkg.json",
"folder": "src"
},
"Volo.Abp.GlobalFeatures.Tests": {
"path": "test/Volo.Abp.GlobalFeatures.Tests/Volo.Abp.GlobalFeatures.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MultiLingualObjects": {
"path": "src/Volo.Abp.MultiLingualObjects/Volo.Abp.MultiLingualObjects.abppkg.json",
"folder": "src"
},
"Volo.Abp.MultiLingualObjects.Tests": {
"path": "test/Volo.Abp.MultiLingualObjects.Tests/Volo.Abp.MultiLingualObjects.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http.Client.IdentityModel.WebAssembly": {
"path": "src/Volo.Abp.Http.Client.IdentityModel.WebAssembly/Volo.Abp.Http.Client.IdentityModel.WebAssembly.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.Client.Common": {
"path": "src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo.Abp.AspNetCore.Mvc.Client.Common.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Components.WebAssembly": {
"path": "src/Volo.Abp.AspNetCore.Components.WebAssembly/Volo.Abp.AspNetCore.Components.WebAssembly.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Components.WebAssembly.Theming": {
"path": "src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/Volo.Abp.AspNetCore.Components.WebAssembly.Theming.abppkg.json",
"folder": "src"
},
"Volo.Abp.Autofac.WebAssembly": {
"path": "src/Volo.Abp.Autofac.WebAssembly/Volo.Abp.Autofac.WebAssembly.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Authentication.OpenIdConnect": {
"path": "src/Volo.Abp.AspNetCore.Authentication.OpenIdConnect/Volo.Abp.AspNetCore.Authentication.OpenIdConnect.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Rebus": {
"path": "src/Volo.Abp.EventBus.Rebus/Volo.Abp.EventBus.Rebus.abppkg.json",
"folder": "src"
},
"Volo.Abp.ExceptionHandling": {
"path": "src/Volo.Abp.ExceptionHandling/Volo.Abp.ExceptionHandling.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Components": {
"path": "src/Volo.Abp.AspNetCore.Components/Volo.Abp.AspNetCore.Components.abppkg.json",
"folder": "src"
},
"Volo.Abp.Swashbuckle": {
"path": "src/Volo.Abp.Swashbuckle/Volo.Abp.Swashbuckle.abppkg.json",
"folder": "src"
},
"Volo.Abp.Json.Tests": {
"path": "test/Volo.Abp.Json.Tests/Volo.Abp.Json.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Http.Tests": {
"path": "test/Volo.Abp.Http.Tests/Volo.Abp.Http.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Components.Web": {
"path": "src/Volo.Abp.AspNetCore.Components.Web/Volo.Abp.AspNetCore.Components.Web.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Components.Web.Theming": {
"path": "src/Volo.Abp.AspNetCore.Components.Web.Theming/Volo.Abp.AspNetCore.Components.Web.Theming.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Abstractions": {
"path": "src/Volo.Abp.EventBus.Abstractions/Volo.Abp.EventBus.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.Sms.Aliyun": {
"path": "src/Volo.Abp.Sms.Aliyun/Volo.Abp.Sms.Aliyun.abppkg.json",
"folder": "src"
},
"Volo.Abp.Sms.Aliyun.Tests": {
"path": "test/Volo.Abp.Sms.Aliyun.Tests/Volo.Abp.Sms.Aliyun.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.AspNetCore.Components.Server": {
"path": "src/Volo.Abp.AspNetCore.Components.Server/Volo.Abp.AspNetCore.Components.Server.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Components.Server.Theming": {
"path": "src/Volo.Abp.AspNetCore.Components.Server.Theming/Volo.Abp.AspNetCore.Components.Server.Theming.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions": {
"path": "src/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions/Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.AzureServiceBus": {
"path": "src/Volo.Abp.AzureServiceBus/Volo.Abp.AzureServiceBus.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Azure": {
"path": "src/Volo.Abp.EventBus.Azure/Volo.Abp.EventBus.Azure.abppkg.json",
"folder": "src"
},
"Volo.Abp.Authorization.Abstractions": {
"path": "src/Volo.Abp.Authorization.Abstractions/Volo.Abp.Authorization.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.TextTemplating.Core": {
"path": "src/Volo.Abp.TextTemplating.Core/Volo.Abp.TextTemplating.Core.abppkg.json",
"folder": "src"
},
"Volo.Abp.TextTemplating.Scriban": {
"path": "src/Volo.Abp.TextTemplating.Scriban/Volo.Abp.TextTemplating.Scriban.abppkg.json",
"folder": "src"
},
"Volo.Abp.TextTemplating.Razor": {
"path": "src/Volo.Abp.TextTemplating.Razor/Volo.Abp.TextTemplating.Razor.abppkg.json",
"folder": "src"
},
"Volo.Abp.TextTemplating.Razor.Tests": {
"path": "test/Volo.Abp.TextTemplating.Razor.Tests/Volo.Abp.TextTemplating.Razor.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.TextTemplating.Scriban.Tests": {
"path": "test/Volo.Abp.TextTemplating.Scriban.Tests/Volo.Abp.TextTemplating.Scriban.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.MongoDB.Tests.SecondContext": {
"path": "test/Volo.Abp.MongoDB.Tests.SecondContext/Volo.Abp.MongoDB.Tests.SecondContext.abppkg.json",
"folder": "test"
},
"Volo.Abp.IdentityModel.Tests": {
"path": "test/Volo.Abp.IdentityModel.Tests/Volo.Abp.IdentityModel.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.Threading.Tests": {
"path": "test/Volo.Abp.Threading.Tests/Volo.Abp.Threading.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.DistributedLocking": {
"path": "src/Volo.Abp.DistributedLocking/Volo.Abp.DistributedLocking.abppkg.json",
"folder": "src"
},
"Volo.Abp.Auditing.Contracts": {
"path": "src/Volo.Abp.Auditing.Contracts/Volo.Abp.Auditing.Contracts.abppkg.json",
"folder": "src"
},
"Volo.Abp.Http.Client.Web": {
"path": "src/Volo.Abp.Http.Client.Web/Volo.Abp.Http.Client.Web.abppkg.json",
"folder": "src"
},
"Volo.Abp.DistributedLocking.Abstractions": {
"path": "src/Volo.Abp.DistributedLocking.Abstractions/Volo.Abp.DistributedLocking.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.DistributedLocking.Abstractions.Tests": {
"path": "test/Volo.Abp.DistributedLocking.Abstractions.Tests/Volo.Abp.DistributedLocking.Abstractions.Tests.abppkg.json",
"folder": "test"
},
"Volo.Abp.BackgroundWorkers.Hangfire": {
"path": "src/Volo.Abp.BackgroundWorkers.Hangfire/Volo.Abp.BackgroundWorkers.Hangfire.abppkg.json",
"folder": "src"
},
"Volo.Abp.Gdpr.Abstractions": {
"path": "src/Volo.Abp.Gdpr.Abstractions/Volo.Abp.Gdpr.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.RemoteServices": {
"path": "src/Volo.Abp.RemoteServices/Volo.Abp.RemoteServices.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.PlugIn": {
"path": "test/Volo.Abp.AspNetCore.Mvc.PlugIn/Volo.Abp.AspNetCore.Mvc.PlugIn.abppkg.json",
"folder": "test"
},
"Volo.Abp.Json.Newtonsoft": {
"path": "src/Volo.Abp.Json.Newtonsoft/Volo.Abp.Json.Newtonsoft.abppkg.json",
"folder": "src"
},
"Volo.Abp.Json.SystemTextJson": {
"path": "src/Volo.Abp.Json.SystemTextJson/Volo.Abp.Json.SystemTextJson.abppkg.json",
"folder": "src"
},
"Volo.Abp.Json.Abstractions": {
"path": "src/Volo.Abp.Json.Abstractions/Volo.Abp.Json.Abstractions.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.NewtonsoftJson": {
"path": "src/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson/Volo.Abp.AspNetCore.Mvc.NewtonsoftJson.abppkg.json",
"folder": "src"
},
"Volo.Abp.Dapr": {
"path": "src/Volo.Abp.Dapr/Volo.Abp.Dapr.abppkg.json",
"folder": "src"
},
"Volo.Abp.EventBus.Dapr": {
"path": "src/Volo.Abp.EventBus.Dapr/Volo.Abp.EventBus.Dapr.abppkg.json",
"folder": "src"
},
"Volo.Abp.Http.Client.Dapr": {
"path": "src/Volo.Abp.Http.Client.Dapr/Volo.Abp.Http.Client.Dapr.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.Dapr": {
"path": "src/Volo.Abp.AspNetCore.Mvc.Dapr/Volo.Abp.AspNetCore.Mvc.Dapr.abppkg.json",
"folder": "src"
},
"Volo.Abp.AspNetCore.Mvc.Dapr.EventBus": {
"path": "src/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus/Volo.Abp.AspNetCore.Mvc.Dapr.EventBus.abppkg.json",
"folder": "src"
},
"Volo.Abp.DistributedLocking.Dapr": {
"path": "src/Volo.Abp.DistributedLocking.Dapr/Volo.Abp.DistributedLocking.Dapr.abppkg.json",
"folder": "src"
}
}
}