forked from ORT-DA2/M6B-ID-2020.2
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
1164 lines (1164 loc) · 118 KB
/
.gitignore
File metadata and controls
1164 lines (1164 loc) · 118 KB
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
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/Codigos/EjemploWebAPI/WebApplication1/.vs/WebApplication1/config/applicationhost.config
/Codigos/EjemploWebAPI/WebApplication1/.vs/WebApplication1/v16/.suo
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.deps.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.exe
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.pdb
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.dev.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.Development.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.AssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.AssemblyInfoInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.MvcApplicationPartsAssemblyInfo.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.MvcApplicationPartsAssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.RazorTargetAssemblyInfo.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.assets.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.CopyComplete
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.CoreCompileInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.FileListAbsolute.txt
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csprojAssemblyReference.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.exe
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.genruntimeconfig.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.pdb
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/staticwebassets/WebApplication1.StaticWebAssets.Manifest.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/staticwebassets/WebApplication1.StaticWebAssets.xml
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.dgspec.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.props
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.targets
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/project.assets.json
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/project.nuget.cache
/Codigos/EjemploWebAPI/WebApplication1/.vs/WebApplication1/DesignTimeBuild/.dtbcache.v2
/Codigos/EjemploWebAPI/WebApplication1/.vs/WebApplication1/v16/TestStore/0/000.testlog
/Codigos/EjemploWebAPI/WebApplication1/.vs/WebApplication1/v16/TestStore/0/testlog.manifest
/Codigos/EjemploWebAPI/WebApplication1/Domain/bin/Debug/netcoreapp3.1/Domain.deps.json
/Codigos/EjemploWebAPI/WebApplication1/Domain/bin/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/Domain/bin/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfoInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.assets.cache
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CoreCompileInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.FileListAbsolute.txt
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.csprojAssemblyReference.cache
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Domain.csproj.nuget.dgspec.json
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Domain.csproj.nuget.g.props
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/Domain.csproj.nuget.g.targets
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/project.assets.json
/Codigos/EjemploWebAPI/WebApplication1/Domain/obj/project.nuget.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Logic.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Logic.Interface.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Logic.deps.json
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Logic.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic/bin/Debug/netcoreapp3.1/Logic.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.AssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.AssemblyInfoInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.assets.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.csproj.CopyComplete
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.csproj.CoreCompileInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.csproj.FileListAbsolute.txt
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.csprojAssemblyReference.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Debug/netcoreapp3.1/Logic.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Logic.csproj.nuget.dgspec.json
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Logic.csproj.nuget.g.props
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/Logic.csproj.nuget.g.targets
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/project.assets.json
/Codigos/EjemploWebAPI/WebApplication1/Logic/obj/project.nuget.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/bin/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/bin/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/bin/Debug/netcoreapp3.1/Logic.Interface.deps.json
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/bin/Debug/netcoreapp3.1/Logic.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/bin/Debug/netcoreapp3.1/Logic.Interface.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.AssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.AssemblyInfoInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.assets.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.csproj.CopyComplete
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.csproj.CoreCompileInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.csproj.FileListAbsolute.txt
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.csprojAssemblyReference.cache
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Debug/netcoreapp3.1/Logic.Interface.pdb
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Logic.Interface.csproj.nuget.dgspec.json
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Logic.Interface.csproj.nuget.g.props
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/Logic.Interface.csproj.nuget.g.targets
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/project.assets.json
/Codigos/EjemploWebAPI/WebApplication1/Logic.Interface/obj/project.nuget.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Castle.Core.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Logic.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Logic.Interface.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Logic.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Logic.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Moq.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/UnitTestProject1.deps.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/UnitTestProject1.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/UnitTestProject1.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/UnitTestProject1.runtimeconfig.dev.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/UnitTestProject1.runtimeconfig.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/WebApplication1.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/WebApplication1.exe
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/WebApplication1.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/appsettings.Development.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/appsettings.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/testhost.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.AssemblyInfo.cs
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.AssemblyInfoInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.assets.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.csproj.CopyComplete
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.csproj.CoreCompileInputs.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.csproj.FileListAbsolute.txt
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.csprojAssemblyReference.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.dll
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.genruntimeconfig.cache
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/Debug/netcoreapp3.1/UnitTestProject1.pdb
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/UnitTestProject1.csproj.nuget.dgspec.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/UnitTestProject1.csproj.nuget.g.props
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/UnitTestProject1.csproj.nuget.g.targets
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/project.assets.json
/Codigos/EjemploWebAPI/WebApplication1/UnitTestProject1/obj/project.nuget.cache
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Domain.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Domain.pdb
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Logic.Interface.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Logic.Interface.pdb
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Logic.dll
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Logic.pdb
/Codigos/EjemploWebAPI/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/project.razor.json
/Codigos/Bierland/.vs/Bierland/DesignTimeBuild/.dtbcache.v2
/Codigos/Bierland/.vs/Bierland/config/applicationhost.config
/Codigos/Bierland/.vs/Bierland/v16/.suo
/Codigos/Bierland/.vs/Bierland/v16/TestStore/0/000.testlog
/Codigos/Bierland/.vs/Bierland/v16/TestStore/0/testlog.manifest
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.businesslogic.deps.json
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.businesslogic.dll
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.businesslogic.pdb
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.businesslogic/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.businesslogic/obj/Bierland.businesslogic.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.businesslogic/obj/Bierland.businesslogic.csproj.nuget.g.props
/Codigos/Bierland/Bierland.businesslogic/obj/Bierland.businesslogic.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.AssemblyInfo.cs
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.assets.cache
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.csproj.CopyComplete
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.dll
/Codigos/Bierland/Bierland.businesslogic/obj/Debug/netcoreapp3.1/Bierland.businesslogic.pdb
/Codigos/Bierland/Bierland.businesslogic/obj/project.assets.json
/Codigos/Bierland/Bierland.businesslogic/obj/project.nuget.cache
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.deps.json
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.businesslogicInterface/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Bierland.businesslogicInterface.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Bierland.businesslogicInterface.csproj.nuget.g.props
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Bierland.businesslogicInterface.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.AssemblyInfo.cs
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.assets.cache
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.csproj.CopyComplete
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.businesslogicInterface/obj/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.businesslogicInterface/obj/project.assets.json
/Codigos/Bierland/Bierland.businesslogicInterface/obj/project.nuget.cache
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogic.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogic.pdb
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicTest.deps.json
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicTest.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicTest.pdb
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicTest.runtimeconfig.dev.json
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicTest.runtimeconfig.json
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Castle.Core.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Moq.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/testhost.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.businesslogicTest/obj/Bierland.businesslogicTest.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.businesslogicTest/obj/Bierland.businesslogicTest.csproj.nuget.g.props
/Codigos/Bierland/Bierland.businesslogicTest/obj/Bierland.businesslogicTest.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.AssemblyInfo.cs
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.assets.cache
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.csproj.CopyComplete
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.dll
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.genruntimeconfig.cache
/Codigos/Bierland/Bierland.businesslogicTest/obj/Debug/netcoreapp3.1/Bierland.businesslogicTest.pdb
/Codigos/Bierland/Bierland.businesslogicTest/obj/project.assets.json
/Codigos/Bierland/Bierland.businesslogicTest/obj/project.nuget.cache
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccess.deps.json
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccess.dll
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccess.pdb
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccess.runtimeconfig.dev.json
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccess.runtimeconfig.json
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.dataaccess/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.dataaccess/obj/Bierland.dataaccess.csproj.EntityFrameworkCore.targets
/Codigos/Bierland/Bierland.dataaccess/obj/Bierland.dataaccess.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.dataaccess/obj/Bierland.dataaccess.csproj.nuget.g.props
/Codigos/Bierland/Bierland.dataaccess/obj/Bierland.dataaccess.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.AssemblyInfo.cs
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.assets.cache
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.csproj.CopyComplete
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.dll
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.genruntimeconfig.cache
/Codigos/Bierland/Bierland.dataaccess/obj/Debug/netcoreapp3.1/Bierland.dataaccess.pdb
/Codigos/Bierland/Bierland.dataaccess/obj/project.assets.json
/Codigos/Bierland/Bierland.dataaccess/obj/project.nuget.cache
/Codigos/Bierland/Bierland.dataaccessInterface/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.deps.json
/Codigos/Bierland/Bierland.dataaccessInterface/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.dataaccessInterface/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Bierland.dataaccessInterface.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Bierland.dataaccessInterface.csproj.nuget.g.props
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Bierland.dataaccessInterface.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.AssemblyInfo.cs
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.assets.cache
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.dataaccessInterface/obj/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.dataaccessInterface/obj/project.assets.json
/Codigos/Bierland/Bierland.dataaccessInterface/obj/project.nuget.cache
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccess.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccess.pdb
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessTest.deps.json
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessTest.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessTest.pdb
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessTest.runtimeconfig.dev.json
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessTest.runtimeconfig.json
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Castle.Core.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.InMemory.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Proxies.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/testhost.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.dataaccessTest/obj/Bierland.dataaccessTest.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.dataaccessTest/obj/Bierland.dataaccessTest.csproj.nuget.g.props
/Codigos/Bierland/Bierland.dataaccessTest/obj/Bierland.dataaccessTest.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.AssemblyInfo.cs
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.assets.cache
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.csproj.CopyComplete
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.dll
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.genruntimeconfig.cache
/Codigos/Bierland/Bierland.dataaccessTest/obj/Debug/netcoreapp3.1/Bierland.dataaccessTest.pdb
/Codigos/Bierland/Bierland.dataaccessTest/obj/project.assets.json
/Codigos/Bierland/Bierland.dataaccessTest/obj/project.nuget.cache
/Codigos/Bierland/Bierland.domain/bin/Debug/netcoreapp3.1/Bierland.domain.deps.json
/Codigos/Bierland/Bierland.domain/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.domain/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.AssemblyInfo.cs
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.assets.cache
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.domain/obj/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.domain/obj/Bierland.domain.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.domain/obj/Bierland.domain.csproj.nuget.g.props
/Codigos/Bierland/Bierland.domain/obj/Bierland.domain.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.domain/obj/project.assets.json
/Codigos/Bierland/Bierland.domain/obj/project.nuget.cache
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.businesslogic.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.businesslogic.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.dataaccess.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.dataaccess.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.deps.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.exe
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.pdb
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.runtimeconfig.dev.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Bierland.webapi.runtimeconfig.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Castle.Core.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.InMemory.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Proxies.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/appsettings.Development.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/appsettings.json
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll
/Codigos/Bierland/Bierland.webapi/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll
/Codigos/Bierland/Bierland.webapi/Properties/launchSettings.json
/Codigos/Bierland/Bierland.webapi/obj/Bierland.dataaccess.EntityFrameworkCore.targets
/Codigos/Bierland/Bierland.webapi/obj/Bierland.webapi.csproj.EntityFrameworkCore.targets
/Codigos/Bierland/Bierland.webapi/obj/Bierland.webapi.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.webapi/obj/Bierland.webapi.csproj.nuget.g.props
/Codigos/Bierland/Bierland.webapi/obj/Bierland.webapi.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.AssemblyInfo.cs
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.MvcApplicationPartsAssemblyInfo.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.MvcApplicationPartsAssemblyInfo.cs
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.RazorTargetAssemblyInfo.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.assets.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.csproj.CopyComplete
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.dll
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.exe
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.genruntimeconfig.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/Bierland.webapi.pdb
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/staticwebassets/Bierland.webapi.StaticWebAssets.Manifest.cache
/Codigos/Bierland/Bierland.webapi/obj/Debug/netcoreapp3.1/staticwebassets/Bierland.webapi.StaticWebAssets.xml
/Codigos/Bierland/Bierland.webapi/obj/project.assets.json
/Codigos/Bierland/Bierland.webapi/obj/project.nuget.cache
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.businesslogic.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.businesslogic.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.businesslogicInterface.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.dataaccess.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.dataaccess.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.dataaccessInterface.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.domain.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.domain.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapi.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapi.exe
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapi.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapiTest.deps.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapiTest.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapiTest.pdb
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapiTest.runtimeconfig.dev.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Bierland.webapiTest.runtimeconfig.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Castle.Core.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Proxies.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Moq.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/appsettings.Development.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/appsettings.json
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/testhost.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
/Codigos/Bierland/Bierland.webapiTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
/Codigos/Bierland/Bierland.webapiTest/obj/Bierland.webapiTest.csproj.nuget.dgspec.json
/Codigos/Bierland/Bierland.webapiTest/obj/Bierland.webapiTest.csproj.nuget.g.props
/Codigos/Bierland/Bierland.webapiTest/obj/Bierland.webapiTest.csproj.nuget.g.targets
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.AssemblyInfo.cs
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.AssemblyInfoInputs.cache
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.assets.cache
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.csproj.CopyComplete
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.csproj.CoreCompileInputs.cache
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.csproj.FileListAbsolute.txt
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.csprojAssemblyReference.cache
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.dll
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.genruntimeconfig.cache
/Codigos/Bierland/Bierland.webapiTest/obj/Debug/netcoreapp3.1/Bierland.webapiTest.pdb
/Codigos/Bierland/Bierland.webapiTest/obj/project.assets.json
/Codigos/Bierland/Bierland.webapiTest/obj/project.nuget.cache
/Codigos/ej-filters/ej-filters.auth/bin/Debug/netstandard2.0/ej-filters.auth.deps.json
/Codigos/ej-filters/ej-filters.auth/bin/Debug/netstandard2.0/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.auth/bin/Debug/netstandard2.0/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.auth/bin/Release/netstandard2.0/ej-filters.auth.deps.json
/Codigos/ej-filters/ej-filters.auth/bin/Release/netstandard2.0/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.auth/bin/Release/netstandard2.0/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.AssemblyInfo.cs
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.AssemblyInfoInputs.cache
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.assets.cache
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.csproj.CoreCompileInputs.cache
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.csprojAssemblyReference.cache
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.auth/obj/Debug/netstandard2.0/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.AssemblyInfo.cs
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.AssemblyInfoInputs.cache
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.assets.cache
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.csproj.CoreCompileInputs.cache
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.csprojAssemblyReference.cache
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.auth/obj/Release/netstandard2.0/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.auth/obj/ej-filters.auth.csproj.nuget.cache
/Codigos/ej-filters/ej-filters.auth/obj/ej-filters.auth.csproj.nuget.dgspec.json
/Codigos/ej-filters/ej-filters.auth/obj/ej-filters.auth.csproj.nuget.g.props
/Codigos/ej-filters/ej-filters.auth/obj/ej-filters.auth.csproj.nuget.g.targets
/Codigos/ej-filters/ej-filters.auth/obj/project.assets.json
/Codigos/ej-filters/ej-filters.auth/obj/project.nuget.cache
/Codigos/ej-filters/ej-filters.api/Properties/launchSettings.json
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.AssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.AssemblyInfoInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.MvcApplicationPartsAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.MvcApplicationPartsAssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.RazorTargetAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.assets.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.csproj.CopyComplete
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.csproj.CoreCompileInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.csprojAssemblyReference.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.genruntimeconfig.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/staticwebassets/ej-filters.api.StaticWebAssets.Manifest.cache
/Codigos/ej-filters/ej-filters.api/obj/Debug/netcoreapp3.1/staticwebassets/ej-filters.api.StaticWebAssets.xml
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp2.1/ej-filters.api.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.AssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.AssemblyInfoInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.MvcApplicationPartsAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.MvcApplicationPartsAssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.RazorTargetAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.assets.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.csproj.CopyComplete
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.csproj.CoreCompileInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.csprojAssemblyReference.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.genruntimeconfig.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/staticwebassets/ej-filters.api.StaticWebAssets.Manifest.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/staticwebassets/ej-filters.api.StaticWebAssets.xml
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.AssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.AssemblyInfoInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.MvcApplicationPartsAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.MvcApplicationPartsAssemblyInfo.cs
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.RazorTargetAssemblyInfo.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.assets.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.csproj.CopyComplete
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.csproj.CoreCompileInputs.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.csproj.FileListAbsolute.txt
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.csprojAssemblyReference.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.genruntimeconfig.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/staticwebassets/ej-filters.api.StaticWebAssets.Manifest.cache
/Codigos/ej-filters/ej-filters.api/obj/Release/netcoreapp3.1/win-x64/staticwebassets/ej-filters.api.StaticWebAssets.xml
/Codigos/ej-filters/ej-filters.api/obj/ej-filters.api.csproj.nuget.cache
/Codigos/ej-filters/ej-filters.api/obj/ej-filters.api.csproj.nuget.dgspec.json
/Codigos/ej-filters/ej-filters.api/obj/ej-filters.api.csproj.nuget.g.props
/Codigos/ej-filters/ej-filters.api/obj/ej-filters.api.csproj.nuget.g.targets
/Codigos/ej-filters/ej-filters.api/obj/project.assets.json
/Codigos/ej-filters/ej-filters.api/obj/project.nuget.cache
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/appsettings.Development.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/appsettings.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.deps.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.runtimeconfig.dev.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.api.runtimeconfig.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/Microsoft.OpenApi.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/appsettings.Development.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/appsettings.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.api.deps.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.api.runtimeconfig.json
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.api/bin/Debug/netcoreapp3.1/publish/web.config
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/Microsoft.OpenApi.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/Properties/launchSettings.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/appsettings.Development.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/appsettings.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.deps.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.runtimeconfig.dev.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.api.runtimeconfig.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.auth.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/ej-filters.auth.pdb
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/Microsoft.OpenApi.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/Swashbuckle.AspNetCore.Swagger.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/Swashbuckle.AspNetCore.SwaggerGen.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/Swashbuckle.AspNetCore.SwaggerUI.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/appsettings.Development.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/appsettings.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/ej-filters.api.deps.json
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/ej-filters.api.dll
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/ej-filters.api.exe
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/ej-filters.api.pdb
/Codigos/ej-filters/ej-filters.api/bin/Release/netcoreapp3.1/publish/ej-filters.api.runtimeconfig.json