-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
1637 lines (1637 loc) · 94.5 KB
/
.gitignore
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
/ZSZ.Tests/obj/Debug/ZSZ.Tests.pdb
/ZSZ.Tests/obj/Debug/ZSZ.Tests.exe
/ZSZ.Tests/obj/Debug/ZSZ.Tests.csprojResolveAssemblyReference.cache
/ZSZ.Tests/obj/Debug/ZSZ.Tests.csprojAssemblyReference.cache
/ZSZ.Tests/obj/Debug/ZSZ.Tests.csproj.FileListAbsolute.txt
/ZSZ.Tests/obj/Debug/ZSZ.Tests.csproj.CoreCompileInputs.cache
/ZSZ.Tests/obj/Debug/ZSZ.Tests.csproj.CopyComplete
/ZSZ.Tests/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.Tests/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.Tests/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.Tests/obj/Debug
/ZSZ.Tests/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
/ZSZ.Tests/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
/ZSZ.Tests/bin/Debug/ZSZ.Tests.pdb
/ZSZ.Tests/bin/Debug/ZSZ.Tests.exe.config
/ZSZ.Tests/bin/Debug/ZSZ.Tests.exe
/ZSZ.Tests/bin/Debug/ZSZ.Service.pdb
/ZSZ.Tests/bin/Debug/ZSZ.Service.dll.config
/ZSZ.Tests/bin/Debug/ZSZ.Service.dll
/ZSZ.Tests/bin/Debug/ZSZ.IService.pdb
/ZSZ.Tests/bin/Debug/ZSZ.IService.dll
/ZSZ.Tests/bin/Debug/ZSZ.DTO.pdb
/ZSZ.Tests/bin/Debug/ZSZ.DTO.dll
/ZSZ.Tests/bin/Debug/ZSZ.CommonMVC.pdb
/ZSZ.Tests/bin/Debug/ZSZ.CommonMVC.dll
/ZSZ.Tests/bin/Debug/ZSZ.Common.pdb
/ZSZ.Tests/bin/Debug/ZSZ.Common.dll
/ZSZ.Tests/bin/Debug/zh-Hans/System.Web.WebPages.resources.dll
/ZSZ.Tests/bin/Debug/zh-Hans/System.Web.WebPages.Razor.resources.dll
/ZSZ.Tests/bin/Debug/zh-Hans/System.Web.WebPages.Deployment.resources.dll
/ZSZ.Tests/bin/Debug/zh-Hans/System.Web.Razor.resources.dll
/ZSZ.Tests/bin/Debug/zh-Hans/System.Web.Mvc.resources.dll
/ZSZ.Tests/bin/Debug/zh-Hans
/ZSZ.Tests/bin/Debug/System.Web.WebPages.xml
/ZSZ.Tests/bin/Debug/System.Web.WebPages.Razor.xml
/ZSZ.Tests/bin/Debug/System.Web.WebPages.Razor.dll
/ZSZ.Tests/bin/Debug/System.Web.WebPages.dll
/ZSZ.Tests/bin/Debug/System.Web.WebPages.Deployment.xml
/ZSZ.Tests/bin/Debug/System.Web.WebPages.Deployment.dll
/ZSZ.Tests/bin/Debug/System.Web.Razor.xml
/ZSZ.Tests/bin/Debug/System.Web.Razor.dll
/ZSZ.Tests/bin/Debug/System.Web.Mvc.xml
/ZSZ.Tests/bin/Debug/System.Web.Mvc.dll
/ZSZ.Tests/bin/Debug/Quartz.xml
/ZSZ.Tests/bin/Debug/Quartz.pdb
/ZSZ.Tests/bin/Debug/Quartz.dll
/ZSZ.Tests/bin/Debug/PlainElastic.Net.xml
/ZSZ.Tests/bin/Debug/PlainElastic.Net.pdb
/ZSZ.Tests/bin/Debug/PlainElastic.Net.dll
/ZSZ.Tests/bin/Debug/Newtonsoft.Json.xml
/ZSZ.Tests/bin/Debug/Newtonsoft.Json.pdb
/ZSZ.Tests/bin/Debug/Newtonsoft.Json.dll
/ZSZ.Tests/bin/Debug/Microsoft.Web.Infrastructure.dll
/ZSZ.Tests/bin/Debug/log4net.xml
/ZSZ.Tests/bin/Debug/log4net.dll
/ZSZ.Tests/bin/Debug/EntityFramework.xml
/ZSZ.Tests/bin/Debug/EntityFramework.SqlServer.xml
/ZSZ.Tests/bin/Debug/EntityFramework.SqlServer.dll
/ZSZ.Tests/bin/Debug/EntityFramework.dll
/ZSZ.Tests/bin/Debug/Common.Logging.xml
/ZSZ.Tests/bin/Debug/Common.Logging.pdb
/ZSZ.Tests/bin/Debug/Common.Logging.dll
/ZSZ.Tests/bin/Debug/Common.Logging.Core.xml
/ZSZ.Tests/bin/Debug/Common.Logging.Core.pdb
/ZSZ.Tests/bin/Debug/Common.Logging.Core.dll
/ZSZ.Tests/bin/Debug/CodeCarvings.Piczard.xml
/ZSZ.Tests/bin/Debug/CodeCarvings.Piczard.dll
/ZSZ.Tests/bin/Debug/CaptchaGen.dll
/ZSZ.Tests/bin/Debug/Autofac.xml
/ZSZ.Tests/bin/Debug/Autofac.dll
/ZSZ.Tests/bin/Debug
/ZSZ.Tests/bin
/ZSZ.Tests
/ZSZ.Service/ZSZ.Service.csproj.user
/ZSZ.Service/obj/Debug/ZSZ.Service.pdb
/ZSZ.Service/obj/Debug/ZSZ.Service.dll
/ZSZ.Service/obj/Debug/ZSZ.Service.csprojResolveAssemblyReference.cache
/ZSZ.Service/obj/Debug/ZSZ.Service.csproj.FileListAbsolute.txt
/ZSZ.Service/obj/Debug/ZSZ.Service.csproj.CoreCompileInputs.cache
/ZSZ.Service/obj/Debug/ZSZ.Service.csproj.CopyComplete
/ZSZ.Service/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.Service/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.Service/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.Service/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.Service/obj/Debug
/ZSZ.Service/bin/Debug/ZSZ.Service.pdb
/ZSZ.Service/bin/Debug/ZSZ.Service.dll.config
/ZSZ.Service/bin/Debug/ZSZ.Service.dll
/ZSZ.Service/bin/Debug/ZSZ.IService.pdb
/ZSZ.Service/bin/Debug/ZSZ.IService.dll
/ZSZ.Service/bin/Debug/ZSZ.DTO.pdb
/ZSZ.Service/bin/Debug/ZSZ.DTO.dll
/ZSZ.Service/bin/Debug/ZSZ.Common.pdb
/ZSZ.Service/bin/Debug/ZSZ.Common.dll
/ZSZ.Service/bin/Debug/log4net.xml
/ZSZ.Service/bin/Debug/log4net.dll
/ZSZ.Service/bin/Debug/EntityFramework.xml
/ZSZ.Service/bin/Debug/EntityFramework.SqlServer.xml
/ZSZ.Service/bin/Debug/EntityFramework.SqlServer.dll
/ZSZ.Service/bin/Debug/EntityFramework.dll
/ZSZ.Service/bin/Debug
/ZSZ.Service
/ZSZ.IService/obj/Debug/ZSZ.IService.pdb
/ZSZ.IService/obj/Debug/ZSZ.IService.dll
/ZSZ.IService/obj/Debug/ZSZ.IService.csprojResolveAssemblyReference.cache
/ZSZ.IService/obj/Debug/ZSZ.IService.csproj.FileListAbsolute.txt
/ZSZ.IService/obj/Debug/ZSZ.IService.csproj.CoreCompileInputs.cache
/ZSZ.IService/obj/Debug/ZSZ.IService.csproj.CopyComplete
/ZSZ.IService/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.IService/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.IService/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.IService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.IService/obj/Debug
/ZSZ.IService/bin/Debug/ZSZ.IService.pdb
/ZSZ.IService/bin/Debug/ZSZ.IService.dll
/ZSZ.IService/bin/Debug/ZSZ.DTO.pdb
/ZSZ.IService/bin/Debug/ZSZ.DTO.dll
/ZSZ.IService/bin/Debug
/ZSZ.IService
/ZSZ.FrontWeb/ZSZ.FrontWeb.csproj.user
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.pdb
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.dll
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.csprojResolveAssemblyReference.cache
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.csproj.FileListAbsolute.txt
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.csproj.CoreCompileInputs.cache
/ZSZ.FrontWeb/obj/Debug/ZSZ.FrontWeb.csproj.CopyComplete
/ZSZ.FrontWeb/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.FrontWeb/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.FrontWeb/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.FrontWeb/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.FrontWeb/obj/Debug
/ZSZ.FrontWeb/bin/ZSZ.Service.pdb
/ZSZ.FrontWeb/bin/ZSZ.Service.dll.config
/ZSZ.FrontWeb/bin/ZSZ.Service.dll
/ZSZ.FrontWeb/bin/ZSZ.IService.pdb
/ZSZ.FrontWeb/bin/ZSZ.IService.dll
/ZSZ.FrontWeb/bin/ZSZ.FrontWeb.pdb
/ZSZ.FrontWeb/bin/ZSZ.FrontWeb.dll.config
/ZSZ.FrontWeb/bin/ZSZ.FrontWeb.dll
/ZSZ.FrontWeb/bin/ZSZ.DTO.pdb
/ZSZ.FrontWeb/bin/ZSZ.DTO.dll
/ZSZ.FrontWeb/bin/ZSZ.CommonMVC.pdb
/ZSZ.FrontWeb/bin/ZSZ.CommonMVC.dll
/ZSZ.FrontWeb/bin/ZSZ.Common.pdb
/ZSZ.FrontWeb/bin/ZSZ.Common.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Webpages.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Razor.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Mvc.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans/System.Web.Helpers.resources.dll
/ZSZ.FrontWeb/bin/zh-Hans
/ZSZ.FrontWeb/bin/System.Web.Webpages.xml
/ZSZ.FrontWeb/bin/System.Web.Webpages.Razor.xml
/ZSZ.FrontWeb/bin/System.Web.Webpages.Razor.dll
/ZSZ.FrontWeb/bin/System.Web.Webpages.dll
/ZSZ.FrontWeb/bin/System.Web.Webpages.Deployment.xml
/ZSZ.FrontWeb/bin/System.Web.Webpages.Deployment.dll
/ZSZ.FrontWeb/bin/System.Web.Razor.xml
/ZSZ.FrontWeb/bin/System.Web.Razor.dll
/ZSZ.FrontWeb/bin/System.Web.Mvc.xml
/ZSZ.FrontWeb/bin/System.Web.Mvc.dll
/ZSZ.FrontWeb/bin/System.Web.Helpers.xml
/ZSZ.FrontWeb/bin/System.Web.Helpers.dll
/ZSZ.FrontWeb/bin/roslyn/VBCSCompiler.exe.config
/ZSZ.FrontWeb/bin/roslyn/VBCSCompiler.exe
/ZSZ.FrontWeb/bin/roslyn/vbc.exe
/ZSZ.FrontWeb/bin/roslyn/System.Reflection.Metadata.dll
/ZSZ.FrontWeb/bin/roslyn/System.Collections.Immutable.dll
/ZSZ.FrontWeb/bin/roslyn/Microsoft.VisualBasic.Core.targets
/ZSZ.FrontWeb/bin/roslyn/Microsoft.CSharp.Core.targets
/ZSZ.FrontWeb/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll
/ZSZ.FrontWeb/bin/roslyn/Microsoft.CodeAnalysis.dll
/ZSZ.FrontWeb/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll
/ZSZ.FrontWeb/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll
/ZSZ.FrontWeb/bin/roslyn/csc.exe
/ZSZ.FrontWeb/bin/roslyn
/ZSZ.FrontWeb/bin/Newtonsoft.Json.xml
/ZSZ.FrontWeb/bin/Newtonsoft.Json.dll
/ZSZ.FrontWeb/bin/Microsoft.Web.Infrastructure.dll
/ZSZ.FrontWeb/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
/ZSZ.FrontWeb/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
/ZSZ.FrontWeb/bin/log4net.xml
/ZSZ.FrontWeb/bin/log4net.dll
/ZSZ.FrontWeb/bin/Enyim.Caching.xml
/ZSZ.FrontWeb/bin/Enyim.Caching.dll
/ZSZ.FrontWeb/bin/EntityFramework.xml
/ZSZ.FrontWeb/bin/EntityFramework.SqlServer.xml
/ZSZ.FrontWeb/bin/EntityFramework.SqlServer.dll
/ZSZ.FrontWeb/bin/EntityFramework.dll
/ZSZ.FrontWeb/bin/CaptchaGen.dll
/ZSZ.FrontWeb/bin/Autofac.xml
/ZSZ.FrontWeb/bin/Autofac.Integration.Mvc.xml
/ZSZ.FrontWeb/bin/Autofac.Integration.Mvc.dll
/ZSZ.FrontWeb/bin/Autofac.dll
/ZSZ.FrontWeb/bin
/ZSZ.FrontWeb/App_Data/Log/Logs_20180722.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20180720.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20180718.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20180717.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20180716.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20180715.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20170412.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20170407.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20170404.txt
/ZSZ.FrontWeb/App_Data/Log/Logs_20170326.txt
/ZSZ.FrontWeb/App_Data/Log
/ZSZ.FrontWeb
/ZSZ.DTO/ZSZ.DTO.csproj.user
/ZSZ.DTO/obj/Debug/ZSZ.DTO.pdb
/ZSZ.DTO/obj/Debug/ZSZ.DTO.dll
/ZSZ.DTO/obj/Debug/ZSZ.DTO.csprojResolveAssemblyReference.cache
/ZSZ.DTO/obj/Debug/ZSZ.DTO.csproj.FileListAbsolute.txt
/ZSZ.DTO/obj/Debug/ZSZ.DTO.csproj.CoreCompileInputs.cache
/ZSZ.DTO/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.DTO/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.DTO/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.DTO/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.DTO/obj/Debug
/ZSZ.DTO/bin/Debug/ZSZ.DTO.pdb
/ZSZ.DTO/bin/Debug/ZSZ.DTO.dll
/ZSZ.DTO/bin/Debug
/ZSZ.DTO
/ZSZ.CommonMVC/obj/Release/ZSZ.CommonMVC.csprojResolveAssemblyReference.cache
/ZSZ.CommonMVC/obj/Release/ZSZ.CommonMVC.csproj.CoreCompileInputs.cache
/ZSZ.CommonMVC/obj/Release
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.pdb
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.dll
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.csprojResolveAssemblyReference.cache
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.csproj.FileListAbsolute.txt
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.csproj.CoreCompileInputs.cache
/ZSZ.CommonMVC/obj/Debug/ZSZ.CommonMVC.csproj.CopyComplete
/ZSZ.CommonMVC/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.CommonMVC/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.CommonMVC/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.CommonMVC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.CommonMVC/obj/Debug
/ZSZ.CommonMVC/obj
/ZSZ.CommonMVC/bin/Debug/ZSZ.CommonMVC.pdb
/ZSZ.CommonMVC/bin/Debug/ZSZ.CommonMVC.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.WebPages.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.WebPages.Razor.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.WebPages.Deployment.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.Razor.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.Mvc.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans/System.Web.Helpers.resources.dll
/ZSZ.CommonMVC/bin/Debug/zh-Hans
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.Razor.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.Razor.dll
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.dll
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.Deployment.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.WebPages.Deployment.dll
/ZSZ.CommonMVC/bin/Debug/System.Web.Razor.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.Razor.dll
/ZSZ.CommonMVC/bin/Debug/System.Web.Mvc.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.Mvc.dll
/ZSZ.CommonMVC/bin/Debug/System.Web.Helpers.xml
/ZSZ.CommonMVC/bin/Debug/System.Web.Helpers.dll
/ZSZ.CommonMVC/bin/Debug/Newtonsoft.Json.xml
/ZSZ.CommonMVC/bin/Debug/Newtonsoft.Json.dll
/ZSZ.CommonMVC/bin/Debug/Microsoft.Web.Infrastructure.dll
/ZSZ.CommonMVC/bin/Debug
/ZSZ.CommonMVC
/ZSZ.Common/obj/Release/ZSZ.Common.csprojResolveAssemblyReference.cache
/ZSZ.Common/obj/Release/ZSZ.Common.csproj.CoreCompileInputs.cache
/ZSZ.Common/obj/Release
/ZSZ.Common/obj/Debug/ZSZ.Common.pdb
/ZSZ.Common/obj/Debug/ZSZ.Common.dll
/ZSZ.Common/obj/Debug/ZSZ.Common.csprojResolveAssemblyReference.cache
/ZSZ.Common/obj/Debug/ZSZ.Common.csproj.FileListAbsolute.txt
/ZSZ.Common/obj/Debug/ZSZ.Common.csproj.CoreCompileInputs.cache
/ZSZ.Common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.Common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.Common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.Common/obj/Debug
/ZSZ.Common/obj
/ZSZ.Common/bin/Debug/ZSZ.Common.pdb
/ZSZ.Common/bin/Debug/ZSZ.Common.dll
/ZSZ.Common/bin/Debug
/ZSZ.Common
/ZSZ.AdminWeb/ZSZ.AdminWeb.csproj.user
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.pdb
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.dll
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.csprojResolveAssemblyReference.cache
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.csproj.FileListAbsolute.txt
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.csproj.CoreCompileInputs.cache
/ZSZ.AdminWeb/obj/Debug/ZSZ.AdminWeb.csproj.CopyComplete
/ZSZ.AdminWeb/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ZSZ.AdminWeb/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ZSZ.AdminWeb/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ZSZ.AdminWeb/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ZSZ.AdminWeb/obj/Debug
/ZSZ.AdminWeb/bin/ZSZ.Service.pdb
/ZSZ.AdminWeb/bin/ZSZ.Service.dll.config
/ZSZ.AdminWeb/bin/ZSZ.Service.dll
/ZSZ.AdminWeb/bin/ZSZ.IService.pdb
/ZSZ.AdminWeb/bin/ZSZ.IService.dll
/ZSZ.AdminWeb/bin/ZSZ.DTO.pdb
/ZSZ.AdminWeb/bin/ZSZ.DTO.dll
/ZSZ.AdminWeb/bin/ZSZ.CommonMVC.pdb
/ZSZ.AdminWeb/bin/ZSZ.CommonMVC.dll
/ZSZ.AdminWeb/bin/ZSZ.Common.pdb
/ZSZ.AdminWeb/bin/ZSZ.Common.dll
/ZSZ.AdminWeb/bin/ZSZ.AdminWeb.pdb
/ZSZ.AdminWeb/bin/ZSZ.AdminWeb.dll.config
/ZSZ.AdminWeb/bin/ZSZ.AdminWeb.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Webpages.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Razor.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Mvc.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans/System.Web.Helpers.resources.dll
/ZSZ.AdminWeb/bin/zh-Hans
/ZSZ.AdminWeb/bin/System.Web.Webpages.xml
/ZSZ.AdminWeb/bin/System.Web.Webpages.Razor.xml
/ZSZ.AdminWeb/bin/System.Web.Webpages.Razor.dll
/ZSZ.AdminWeb/bin/System.Web.Webpages.dll
/ZSZ.AdminWeb/bin/System.Web.Webpages.Deployment.xml
/ZSZ.AdminWeb/bin/System.Web.Webpages.Deployment.dll
/ZSZ.AdminWeb/bin/System.Web.Razor.xml
/ZSZ.AdminWeb/bin/System.Web.Razor.dll
/ZSZ.AdminWeb/bin/System.Web.Mvc.xml
/ZSZ.AdminWeb/bin/System.Web.Mvc.dll
/ZSZ.AdminWeb/bin/System.Web.Helpers.xml
/ZSZ.AdminWeb/bin/System.Web.Helpers.dll
/ZSZ.AdminWeb/bin/roslyn/VBCSCompiler.exe.config
/ZSZ.AdminWeb/bin/roslyn/VBCSCompiler.exe
/ZSZ.AdminWeb/bin/roslyn/vbc.exe
/ZSZ.AdminWeb/bin/roslyn/System.Reflection.Metadata.dll
/ZSZ.AdminWeb/bin/roslyn/System.Collections.Immutable.dll
/ZSZ.AdminWeb/bin/roslyn/Microsoft.VisualBasic.Core.targets
/ZSZ.AdminWeb/bin/roslyn/Microsoft.CSharp.Core.targets
/ZSZ.AdminWeb/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll
/ZSZ.AdminWeb/bin/roslyn/Microsoft.CodeAnalysis.dll
/ZSZ.AdminWeb/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll
/ZSZ.AdminWeb/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll
/ZSZ.AdminWeb/bin/roslyn/csc.exe
/ZSZ.AdminWeb/bin/roslyn
/ZSZ.AdminWeb/bin/Quartz.xml
/ZSZ.AdminWeb/bin/Quartz.pdb
/ZSZ.AdminWeb/bin/Quartz.dll
/ZSZ.AdminWeb/bin/Qiniu.dll
/ZSZ.AdminWeb/bin/Newtonsoft.Json.xml
/ZSZ.AdminWeb/bin/Newtonsoft.Json.dll
/ZSZ.AdminWeb/bin/Microsoft.Web.Infrastructure.dll
/ZSZ.AdminWeb/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
/ZSZ.AdminWeb/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
/ZSZ.AdminWeb/bin/log4net.xml
/ZSZ.AdminWeb/bin/log4net.dll
/ZSZ.AdminWeb/bin/EntityFramework.xml
/ZSZ.AdminWeb/bin/EntityFramework.SqlServer.xml
/ZSZ.AdminWeb/bin/EntityFramework.SqlServer.dll
/ZSZ.AdminWeb/bin/EntityFramework.dll
/ZSZ.AdminWeb/bin/Common.Logging.xml
/ZSZ.AdminWeb/bin/Common.Logging.pdb
/ZSZ.AdminWeb/bin/Common.Logging.dll
/ZSZ.AdminWeb/bin/Common.Logging.Core.xml
/ZSZ.AdminWeb/bin/Common.Logging.Core.pdb
/ZSZ.AdminWeb/bin/Common.Logging.Core.dll
/ZSZ.AdminWeb/bin/CodeCarvings.Piczard.xml
/ZSZ.AdminWeb/bin/CodeCarvings.Piczard.dll
/ZSZ.AdminWeb/bin/CaptchaGen.dll
/ZSZ.AdminWeb/bin/Autofac.xml
/ZSZ.AdminWeb/bin/Autofac.Integration.Mvc.xml
/ZSZ.AdminWeb/bin/Autofac.Integration.Mvc.dll
/ZSZ.AdminWeb/bin/Autofac.dll
/ZSZ.AdminWeb/bin
/ZSZ.AdminWeb/App_Data/Log/Logs_20180914.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180913.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180912.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180911.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180809.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180808.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180807.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180806.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180805.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180804.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180803.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180802.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180801.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180722.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180721.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180717.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180714.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180713.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180712.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180708.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180707.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180706.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180705.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180625.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180624.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180623.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180622.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180621.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180620.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180619.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180618.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180617.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180616.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20180612.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170412.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170407.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170404.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170331.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170330.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170329.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170328.txt
/ZSZ.AdminWeb/App_Data/Log/Logs_20170326.txt
/ZSZ.AdminWeb/App_Data/Log
/ZSZ.AdminWeb
/WebApplication2/WebApplication2.csproj.user
/WebApplication2/obj/Release/WebApplication2.csprojResolveAssemblyReference.cache
/WebApplication2/obj/Release/WebApplication2.csproj.CoreCompileInputs.cache
/WebApplication2/obj/Release
/WebApplication2/obj/Debug/WebApplication2.pdb
/WebApplication2/obj/Debug/WebApplication2.dll
/WebApplication2/obj/Debug/WebApplication2.csprojResolveAssemblyReference.cache
/WebApplication2/obj/Debug/WebApplication2.csproj.FileListAbsolute.txt
/WebApplication2/obj/Debug/WebApplication2.csproj.CoreCompileInputs.cache
/WebApplication2/obj/Debug/WebApplication2.csproj.CopyComplete
/WebApplication2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/WebApplication2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/WebApplication2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/WebApplication2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/WebApplication2/obj/Debug
/WebApplication2/obj
/WebApplication2/bin/ZSZ.CommonMVC.pdb
/WebApplication2/bin/ZSZ.CommonMVC.dll
/WebApplication2/bin/zh-Hans/System.Web.Webpages.resources.dll
/WebApplication2/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll
/WebApplication2/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll
/WebApplication2/bin/zh-Hans/System.Web.Razor.resources.dll
/WebApplication2/bin/zh-Hans/System.Web.Mvc.resources.dll
/WebApplication2/bin/zh-Hans/System.Web.Helpers.resources.dll
/WebApplication2/bin/zh-Hans
/WebApplication2/bin/WebApplication2.pdb
/WebApplication2/bin/WebApplication2.dll.config
/WebApplication2/bin/WebApplication2.dll
/WebApplication2/bin/TestService.pdb
/WebApplication2/bin/TestService.dll
/WebApplication2/bin/TestIService.pdb
/WebApplication2/bin/TestIService.dll
/WebApplication2/bin/System.Web.Webpages.xml
/WebApplication2/bin/System.Web.Webpages.Razor.xml
/WebApplication2/bin/System.Web.Webpages.Razor.dll
/WebApplication2/bin/System.Web.Webpages.dll
/WebApplication2/bin/System.Web.Webpages.Deployment.xml
/WebApplication2/bin/System.Web.Webpages.Deployment.dll
/WebApplication2/bin/System.Web.Razor.xml
/WebApplication2/bin/System.Web.Razor.dll
/WebApplication2/bin/System.Web.Mvc.xml
/WebApplication2/bin/System.Web.Mvc.dll
/WebApplication2/bin/System.Web.Helpers.xml
/WebApplication2/bin/System.Web.Helpers.dll
/WebApplication2/bin/roslyn/VBCSCompiler.exe.config
/WebApplication2/bin/roslyn/VBCSCompiler.exe
/WebApplication2/bin/roslyn/vbc.exe
/WebApplication2/bin/roslyn/System.Reflection.Metadata.dll
/WebApplication2/bin/roslyn/System.Collections.Immutable.dll
/WebApplication2/bin/roslyn/Microsoft.VisualBasic.Core.targets
/WebApplication2/bin/roslyn/Microsoft.CSharp.Core.targets
/WebApplication2/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll
/WebApplication2/bin/roslyn/Microsoft.CodeAnalysis.dll
/WebApplication2/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll
/WebApplication2/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll
/WebApplication2/bin/roslyn/csc.exe
/WebApplication2/bin/roslyn
/WebApplication2/bin/Quartz.xml
/WebApplication2/bin/Quartz.pdb
/WebApplication2/bin/Quartz.dll
/WebApplication2/bin/Newtonsoft.Json.xml
/WebApplication2/bin/Newtonsoft.Json.dll
/WebApplication2/bin/Microsoft.Web.Infrastructure.dll
/WebApplication2/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
/WebApplication2/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
/WebApplication2/bin/Common.Logging.xml
/WebApplication2/bin/Common.Logging.pdb
/WebApplication2/bin/Common.Logging.dll
/WebApplication2/bin/Common.Logging.Core.xml
/WebApplication2/bin/Common.Logging.Core.pdb
/WebApplication2/bin/Common.Logging.Core.dll
/WebApplication2/bin/Autofac.xml
/WebApplication2/bin/Autofac.Integration.Mvc.xml
/WebApplication2/bin/Autofac.Integration.Mvc.dll
/WebApplication2/bin/Autofac.dll
/WebApplication2/bin
/WebApplication2
/TestService/obj/Release/TestService.csprojResolveAssemblyReference.cache
/TestService/obj/Release/TestService.csproj.CoreCompileInputs.cache
/TestService/obj/Release
/TestService/obj/Debug/TestService.pdb
/TestService/obj/Debug/TestService.dll
/TestService/obj/Debug/TestService.csprojResolveAssemblyReference.cache
/TestService/obj/Debug/TestService.csproj.FileListAbsolute.txt
/TestService/obj/Debug/TestService.csproj.CoreCompileInputs.cache
/TestService/obj/Debug/TestService.csproj.CopyComplete
/TestService/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/TestService/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/TestService/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/TestService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/TestService/obj/Debug
/TestService/obj
/TestService/bin/Debug/TestService.pdb
/TestService/bin/Debug/TestService.dll
/TestService/bin/Debug/TestIService.pdb
/TestService/bin/Debug/TestIService.dll
/TestService/bin/Debug
/TestService
/TestIService/obj/Release/TestIService.csprojResolveAssemblyReference.cache
/TestIService/obj/Release/TestIService.csproj.CoreCompileInputs.cache
/TestIService/obj/Release
/TestIService/obj/Debug/TestIService.pdb
/TestIService/obj/Debug/TestIService.dll
/TestIService/obj/Debug/TestIService.csprojResolveAssemblyReference.cache
/TestIService/obj/Debug/TestIService.csproj.FileListAbsolute.txt
/TestIService/obj/Debug/TestIService.csproj.CoreCompileInputs.cache
/TestIService/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/TestIService/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/TestIService/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/TestIService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/TestIService/obj/Debug
/TestIService/obj
/TestIService/bin/Debug/TestIService.pdb
/TestIService/bin/Debug/TestIService.dll
/TestIService/bin/Debug
/TestIService
/ServiceTests/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
/ServiceTests/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
/ServiceTests/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
/ServiceTests/obj/Debug/ServiceTests.pdb
/ServiceTests/obj/Debug/ServiceTests.dll
/ServiceTests/obj/Debug/ServiceTests.csprojResolveAssemblyReference.cache
/ServiceTests/obj/Debug/ServiceTests.csproj.FileListAbsolute.txt
/ServiceTests/obj/Debug/ServiceTests.csproj.CoreCompileInputs.cache
/ServiceTests/obj/Debug/ServiceTests.csproj.CopyComplete
/ServiceTests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
/ServiceTests/obj/Debug
/ServiceTests/bin/Debug/ZSZ.Service.pdb
/ServiceTests/bin/Debug/ZSZ.Service.dll.config
/ServiceTests/bin/Debug/ZSZ.Service.dll
/ServiceTests/bin/Debug/ZSZ.IService.pdb
/ServiceTests/bin/Debug/ZSZ.IService.dll
/ServiceTests/bin/Debug/ZSZ.DTO.pdb
/ServiceTests/bin/Debug/ZSZ.DTO.dll
/ServiceTests/bin/Debug/ZSZ.Common.pdb
/ServiceTests/bin/Debug/ZSZ.Common.dll
/ServiceTests/bin/Debug/ServiceTests.pdb
/ServiceTests/bin/Debug/ServiceTests.dll.config
/ServiceTests/bin/Debug/ServiceTests.dll
/ServiceTests/bin/Debug/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll
/ServiceTests/bin/Debug/log4net.xml
/ServiceTests/bin/Debug/log4net.dll
/ServiceTests/bin/Debug/EntityFramework.xml
/ServiceTests/bin/Debug/EntityFramework.SqlServer.xml
/ServiceTests/bin/Debug/EntityFramework.SqlServer.dll
/ServiceTests/bin/Debug/EntityFramework.dll
/ServiceTests/bin/Debug
/ServiceTests
/packages/Quartz.2.5.0/Quartz.2.5.0.nupkg
/packages/Quartz.2.5.0/lib/net40-client/Quartz.xml
/packages/Quartz.2.5.0/lib/net40-client/Quartz.pdb
/packages/Quartz.2.5.0/lib/net40-client/Quartz.dll
/packages/Quartz.2.5.0/lib/net40-client
/packages/Quartz.2.5.0/lib/net40/Quartz.xml
/packages/Quartz.2.5.0/lib/net40/Quartz.pdb
/packages/Quartz.2.5.0/lib/net40/Quartz.dll
/packages/Quartz.2.5.0/lib/net40
/packages/Quartz.2.5.0/lib/net35-client/Quartz.xml
/packages/Quartz.2.5.0/lib/net35-client/Quartz.pdb
/packages/Quartz.2.5.0/lib/net35-client/Quartz.dll
/packages/Quartz.2.5.0/lib/net35-client
/packages/Quartz.2.5.0/lib/net35/Quartz.xml
/packages/Quartz.2.5.0/lib/net35/Quartz.pdb
/packages/Quartz.2.5.0/lib/net35/Quartz.dll
/packages/Quartz.2.5.0/lib/net35
/packages/Quartz.2.5.0/lib
/packages/Quartz.2.5.0/content/job_scheduling_data_2_0.xsd
/packages/Quartz.2.5.0/content
/packages/Quartz.2.5.0
/packages/Qiniu.Shared.7.2.15/Qiniu.Shared.7.2.15.nupkg
/packages/Qiniu.Shared.7.2.15/lib/uap10.0/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/uap10.0
/packages/Qiniu.Shared.7.2.15/lib/netstandard1.6/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/netstandard1.6/Qiniu.deps.json
/packages/Qiniu.Shared.7.2.15/lib/netstandard1.6
/packages/Qiniu.Shared.7.2.15/lib/net45/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/net45
/packages/Qiniu.Shared.7.2.15/lib/net40/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/net40
/packages/Qiniu.Shared.7.2.15/lib/net35/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/net35
/packages/Qiniu.Shared.7.2.15/lib/net20/Qiniu.dll
/packages/Qiniu.Shared.7.2.15/lib/net20
/packages/Qiniu.Shared.7.2.15/lib
/packages/Qiniu.Shared.7.2.15
/packages/PlainElastic.Net.1.1.55/PlainElastic.Net.1.1.55.nupkg
/packages/PlainElastic.Net.1.1.55/lib/Net40/PlainElastic.Net.XML
/packages/PlainElastic.Net.1.1.55/lib/Net40/PlainElastic.Net.pdb
/packages/PlainElastic.Net.1.1.55/lib/Net40/PlainElastic.Net.dll
/packages/PlainElastic.Net.1.1.55/lib/Net40
/packages/PlainElastic.Net.1.1.55
/packages/Newtonsoft.Json.4.0.5/Newtonsoft.Json.4.0.5.nupkg
/packages/Newtonsoft.Json.4.0.5/lib/sl4-windowsphone71/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/sl4-windowsphone71/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/sl4-windowsphone71/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/sl4-windowsphone71
/packages/Newtonsoft.Json.4.0.5/lib/sl4/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/sl4/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/sl4/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/sl4
/packages/Newtonsoft.Json.4.0.5/lib/sl3-wp/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/sl3-wp/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/sl3-wp/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/sl3-wp
/packages/Newtonsoft.Json.4.0.5/lib/net40/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/net40/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/net40/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/net40
/packages/Newtonsoft.Json.4.0.5/lib/net35/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/net35/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/net35/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/net35
/packages/Newtonsoft.Json.4.0.5/lib/net20/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.4.0.5/lib/net20/Newtonsoft.Json.pdb
/packages/Newtonsoft.Json.4.0.5/lib/net20/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.4.0.5/lib/net20
/packages/Newtonsoft.Json.4.0.5/lib
/packages/Newtonsoft.Json.4.0.5
/packages/Newtonsoft.Json.10.0.2/tools/install.ps1
/packages/Newtonsoft.Json.10.0.2/tools
/packages/Newtonsoft.Json.10.0.2/Newtonsoft.Json.10.0.2.nupkg
/packages/Newtonsoft.Json.10.0.2/LICENSE.md
/packages/Newtonsoft.Json.10.0.2/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/portable-net45+win8+wpa81+wp8
/packages/Newtonsoft.Json.10.0.2/lib/portable-net40+sl5+win8+wpa81+wp8/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/portable-net40+sl5+win8+wpa81+wp8/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/portable-net40+sl5+win8+wpa81+wp8
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.3/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.3/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.3
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.0/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.0/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/netstandard1.0
/packages/Newtonsoft.Json.10.0.2/lib/net45/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/net45/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/net45
/packages/Newtonsoft.Json.10.0.2/lib/net40/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/net40/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/net40
/packages/Newtonsoft.Json.10.0.2/lib/net35/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/net35/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/net35
/packages/Newtonsoft.Json.10.0.2/lib/net20/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.2/lib/net20/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.2/lib/net20
/packages/Newtonsoft.Json.10.0.2/lib
/packages/Newtonsoft.Json.10.0.2
/packages/Newtonsoft.Json.10.0.1/tools/install.ps1
/packages/Newtonsoft.Json.10.0.1/tools
/packages/Newtonsoft.Json.10.0.1/Newtonsoft.Json.10.0.1.nupkg
/packages/Newtonsoft.Json.10.0.1/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/portable-net45+win8+wpa81+wp8
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.3/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.3/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.3
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.0/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.0/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/netstandard1.0
/packages/Newtonsoft.Json.10.0.1/lib/net45/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/net45/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/net45
/packages/Newtonsoft.Json.10.0.1/lib/net40/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/net40/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/net40
/packages/Newtonsoft.Json.10.0.1/lib/net35/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/net35/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/net35
/packages/Newtonsoft.Json.10.0.1/lib/net20/Newtonsoft.Json.xml
/packages/Newtonsoft.Json.10.0.1/lib/net20/Newtonsoft.Json.dll
/packages/Newtonsoft.Json.10.0.1/lib/net20
/packages/Newtonsoft.Json.10.0.1/lib
/packages/Newtonsoft.Json.10.0.1
/packages/MSTest.TestFramework.1.2.0/MSTest.TestFramework.1.2.0.nupkg
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hant
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/zh-Hans
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/tr
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ru
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pt
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/pl
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ko
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/ja
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/it
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/fr
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/es
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/de
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0/cs
/packages/MSTest.TestFramework.1.2.0/lib/uap10.0
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hant
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/zh-Hans
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/tr
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ru
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pt
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/pl
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ko
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/ja
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/it
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/fr
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/es
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/de
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0/cs
/packages/MSTest.TestFramework.1.2.0/lib/netstandard1.0
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hant
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/zh-Hans
/packages/MSTest.TestFramework.1.2.0/lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/tr
/packages/MSTest.TestFramework.1.2.0/lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ru
/packages/MSTest.TestFramework.1.2.0/lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/pt
/packages/MSTest.TestFramework.1.2.0/lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/pl
/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML
/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
/packages/MSTest.TestFramework.1.2.0/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/packages/MSTest.TestFramework.1.2.0/lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ko
/packages/MSTest.TestFramework.1.2.0/lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/ja
/packages/MSTest.TestFramework.1.2.0/lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/it
/packages/MSTest.TestFramework.1.2.0/lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/fr
/packages/MSTest.TestFramework.1.2.0/lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/es
/packages/MSTest.TestFramework.1.2.0/lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/de
/packages/MSTest.TestFramework.1.2.0/lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
/packages/MSTest.TestFramework.1.2.0/lib/net45/cs
/packages/MSTest.TestFramework.1.2.0/lib/net45
/packages/MSTest.TestFramework.1.2.0/lib
/packages/MSTest.TestFramework.1.2.0
/packages/MSTest.TestAdapter.1.2.0/MSTest.TestAdapter.1.2.0.nupkg
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hant
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/zh-Hans
/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/tr
/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ru
/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pt
/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/pl
/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ko
/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/ja
/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/it
/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/fr
/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/es
/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/de
/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
/packages/MSTest.TestAdapter.1.2.0/build/_common/cs
/packages/MSTest.TestAdapter.1.2.0/build/_common
/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/MSTest.TestAdapter.targets
/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/MSTest.TestAdapter.props
/packages/MSTest.TestAdapter.1.2.0/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/packages/MSTest.TestAdapter.1.2.0/build/uap10.0
/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0/MSTest.TestAdapter.props
/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
/packages/MSTest.TestAdapter.1.2.0/build/netcoreapp1.0
/packages/MSTest.TestAdapter.1.2.0/build/net45/MSTest.TestAdapter.targets
/packages/MSTest.TestAdapter.1.2.0/build/net45/MSTest.TestAdapter.props
/packages/MSTest.TestAdapter.1.2.0/build/net45
/packages/MSTest.TestAdapter.1.2.0/build
/packages/MSTest.TestAdapter.1.2.0
/packages/Modernizr.2.6.2/Tools/uninstall.ps1
/packages/Modernizr.2.6.2/Tools/install.ps1
/packages/Modernizr.2.6.2/Tools/common.ps1
/packages/Modernizr.2.6.2/Tools
/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg
/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js
/packages/Modernizr.2.6.2/Content/Scripts
/packages/Modernizr.2.6.2
/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg
/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll
/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40
/packages/Microsoft.Web.Infrastructure.1.0.0.0
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0.nupkg
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Workflow.ServiceCore.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Powershell.Workflow.ServiceCore.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PSReadLine.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PackageManagement.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Editor.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Commands.Diagnostics.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.xml
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Management.Infrastructure.dll
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4
/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0
/packages/Microsoft.Net.Compilers.2.4.0/tools/VBCSCompiler.exe.config
/packages/Microsoft.Net.Compilers.2.4.0/tools/VBCSCompiler.exe
/packages/Microsoft.Net.Compilers.2.4.0/tools/vbc.rsp
/packages/Microsoft.Net.Compilers.2.4.0/tools/vbc.exe.config
/packages/Microsoft.Net.Compilers.2.4.0/tools/vbc.exe
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Xml.XPath.XDocument.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Xml.XPath.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Xml.XmlDocument.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Xml.ReaderWriter.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.ValueTuple.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Threading.Thread.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Text.Encoding.CodePages.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Principal.Windows.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Cryptography.X509Certificates.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Cryptography.Primitives.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Cryptography.Encoding.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Cryptography.Algorithms.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.Claims.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Security.AccessControl.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Reflection.Metadata.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.IO.Pipes.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.IO.FileSystem.Primitives.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.IO.FileSystem.DriveInfo.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.IO.FileSystem.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.IO.Compression.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Diagnostics.StackTrace.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Diagnostics.Process.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Diagnostics.FileVersionInfo.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Console.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.Collections.Immutable.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/System.AppContext.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.Win32.Primitives.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.VisualBasic.Core.targets
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.DiaSymReader.Native.x86.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.DiaSymReader.Native.amd64.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CSharp.Core.targets
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CodeAnalysis.Scripting.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CodeAnalysis.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.CodeAnalysis.CSharp.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll
/packages/Microsoft.Net.Compilers.2.4.0/tools/csi.rsp
/packages/Microsoft.Net.Compilers.2.4.0/tools/csi.exe.config
/packages/Microsoft.Net.Compilers.2.4.0/tools/csi.exe
/packages/Microsoft.Net.Compilers.2.4.0/tools/csc.rsp
/packages/Microsoft.Net.Compilers.2.4.0/tools/csc.exe.config
/packages/Microsoft.Net.Compilers.2.4.0/tools/csc.exe
/packages/Microsoft.Net.Compilers.2.4.0/tools
/packages/Microsoft.Net.Compilers.2.4.0/ThirdPartyNotices.rtf
/packages/Microsoft.Net.Compilers.2.4.0/Microsoft.Net.Compilers.2.4.0.nupkg
/packages/Microsoft.Net.Compilers.2.4.0/build/Microsoft.Net.Compilers.props
/packages/Microsoft.Net.Compilers.2.4.0/build
/packages/Microsoft.Net.Compilers.2.4.0
/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe.config
/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe
/packages/Microsoft.Net.Compilers.1.0.0/tools/vbc.exe
/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll
/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll
/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.VisualBasic.Core.targets
/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CSharp.Core.targets