-
Notifications
You must be signed in to change notification settings - Fork 624
/
3rd-Party.txt
1294 lines (970 loc) · 85.9 KB
/
3rd-Party.txt
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
Community Server uses code from the following 3rd party projects:
====================================================================================================
nuget packages
====================================================================================================
AjaxPro.2 - .NET Library that provides AJAX related methods to simplify the communication between server and client. (https://github.com/michaelschwarz/Ajax.NET-Professional/blob/master/LICENSE)
License: MIT License
License File: AjaxPro.2.license
Amazon.Extensions.S3.Encryption - The Amazon S3 Encryption Client for .NET simplifies encrypting and decrypting objects to S3 using KMS or custom keys. (https://github.com/aws/amazon-s3-encryption-client-dotnet/blob/main/LICENSE)
License: Apache License 2.0
License File: Amazon.Extensions.S3.Encryption.license
AntiXSS - AntiXSS is an encoding library which uses a safe list approach to encoding. It provides Html, XML, Url, Form, LDAP, CSS, JScript and VBScript encoding methods to allow you to avoid Cross Site Scripting attacks. This library is part of the Microsoft SDL tools. (http://wpl.codeplex.com/license)
License: MS-PL License
License File: AntiXSS.license
Antlr - ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages. (https://www.antlr3.org/license.html)
License: BSD-3-Clause License
License File: Antlr.license
AppLimit.CloudComputing.SharpBox - SharpBox abstracts existing proprietary technologies under a clear, easy to use and reliable API available on the most important platforms in the industry (Windows, Linux, MAC, Windows Phone 7, Android and iOS) (https://sharpbox.codeplex.com/license)
License: MIT License
License File: AppLimit.CloudComputing.SharpBox.license
ARSoft.Tools.Net - This project contains a complete managed .Net DNS and DNSSEC client, a DNS server and SPF and SenderID validation. (https://github.com/alexreinert/ARSoft.Tools.Net/blob/master/LICENSE)
License: Apache License 2.0
License File: ARSoft.Tools.Net.license
Autofac - Autofac is an IoC container for Microsoft .NET. It manages the dependencies between classes so that applications stay easy to change as they grow in size and complexity. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Autofac.license
AutoFixture - AutoFixture makes it easier for developers to do Test-Driven Development by automating non-relevant Test Fixture Setup, allowing the Test Developer to focus on the essentials of each test case. (https://github.com/AutoFixture/AutoFixture/blob/master/LICENCE.txt)
License: MIT License
License File: AutoFixture.license
AutoMapper - A convention-based object-object mapper. (https://github.com/AutoMapper/AutoMapper/blob/master/LICENSE.txt)
License: MIT License
License File: AutoMapper.license
AWSSDK.CloudFront - Amazon CloudFront is a content delivery web service. It integrates with other Amazon Web Services products to give developers and businesses an easy way to distribute content to end users with low latency, high data transfer speeds, and no minimum usage commitments. (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.CloudFront.license
AWSSDK.Core - The Amazon Web Services SDK for .NET - Core Runtime (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.Core.license
AWSSDK.S3 - Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.S3.license
AWSSDK.SecurityToken - The AWS Security Token Service (AWS STS) enables you to provide trusted users with temporary credentials that provide controlled access to your AWS resources. (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.SecurityToken.license
AWSSDK.SimpleEmail - Amazon SES is an outbound-only email-sending service that provides an easy, cost-effective way for you to send email. (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.SimpleEmail.license
AWSSDK.SimpleNotificationService - Amazon Simple Notification Service (Amazon SNS) is a fast, flexible, fully managed push messaging service. Amazon SNS makes it simple and cost-effective to push notifications to Apple, Google, Fire OS, and Windows devices, as well as Android devices in China with Baidu Cloud Push. You can also use SNS to push notifications to internet connected smart devices, as well as other distributed services. (https://aws.amazon.com/ru/apache-2-0/)
License: Apache License 2.0
License File: AWSSDK.SimpleNotificationService.license
BouncyCastle - The Bouncy Castle Crypto package is a C# implementation of cryptographic algorithms and protocols, it was developed by the Legion of the Bouncy Castle, a registered Australian Charity, with a little help! The Legion, and the latest goings on with this package, can be found at [http://www.bouncycastle.org/](http://www.bouncycastle.org/). In addition to providing basic cryptography algorithms, the package also provides support for CMS, TSP, X.509 certificate generation and a variety of other standards such as OpenPGP. (http://www.bouncycastle.org/licence.html)
License: MIT License
License File: BouncyCastle.license
BouncyCastle-PCL - HMACSHA1 and HMACSHA256 implementation for PCL .NET 4.0, Silverlight5, Windows Phone 8.0, Windows Store Apps. (http://opensource.org/licenses/mit-license.php)
License: MIT License
License File: BouncyCastle-PCL.license
Box.V2 - Windows SDK for v2 of the Box API. The SDK is built upon the Portable Class Library and targets the following frameworks: .NET for Windows Store apps, .NET Framework 4.0, Silverlight 4 and higher, Windows Phone 7.5 and higher (https://github.com/box/box-windows-sdk-v2/blob/master/LICENSE)
License: Apache License 2.0
License File: Box.V2.license
CommandLineParser - The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks. (https://github.com/commandlineparser/commandline/blob/master/License.md)
License: MIT License
License File: CommandLineParser.license
CsvHelper - A library for reading and writing CSV files. Extremely fast, flexible, and easy to use. Supports reading and writing of custom class objects. (https://licenses.nuget.org/MS-PL, or https://licenses.nuget.org/Apache-2.0)
License: MS-PL or Apache License 2.0
License File: CsvHelper.license
DocuSign.eSign.dll - The DocuSign NuGet Package makes integrating DocuSign into your apps and websites a super fast and painless process.The library is open sourced on GitHub, look for the docusign-csharp-client repository. Join the eSign revolution! (https://raw.githubusercontent.com/docusign/docusign-csharp-client/master/LICENSE)
License: MIT License
License File: DocuSign.eSign.dll.license
dotless - Meta package to provide backward compatibility. Please choose either dotless.AspNet or dotless.Core. (https://github.com/dotless/dotless/blob/master/license.txt)
License: Apache License 2.0
License File: dotless.license
dotless - This is a project to port the hugely useful Less libary to the .NET world. It give variables, nested rules and operators to CSS. (https://github.com/dotless/dotless/blob/master/license.txt)
License: Apache License 2.0
License File: dotless.license
dotless.AspNetHandler - Adds HTTPHandler for ASP.NET to compile LESS files on demand. This is a project to port the hugely useful Less libary to the .NET world. It give variables, nested rules and operators to CSS. (https://github.com/dotless/dotless/blob/master/license.txt)
License: Apache License 2.0
License File: dotless.AspNetHandler.license
dotless.Core - Core features to compile LESS files to CSS. (https://github.com/dotless/dotless/blob/master/license.txt)
License: Apache License 2.0
License File: dotless.Core.license
DotNetOpenAuth.Ultimate - A single assembly that adds OpenID 1.1/2.0, OAuth 1.0(a)/2.0, & InfoCard authentication and authorization functionality for client and server applications. This allows your (web) application to issue identities or accept issued identites from other web applications, and even access your users' data on other services. (https://github.com/DotNetOpenAuth/DotNetOpenAuth/blob/develop/LICENSE.txt)
License: MS-PL
License File: DotNetOpenAuth.Ultimate.license
Dropbox.Api - Portable class library for accessing the Dropbox v2 API (https://github.com/dropbox/dropbox-sdk-dotnet/blob/master/LICENSE)
License: MIT License
License File: Dropbox.Api.license
Elasticsearch.Net - Elasticsearch.Net (https://github.com/elastic/elasticsearch-net/blob/master/license.txt)
License: Apache License 2.0
License File: Elasticsearch.Net.license
Fare - .NET port of dk.brics.automaton - Project Fare is an effort to bring a DFA/NFA (finite-state automata) implementation from Java to .NET. There are quite a few implementations available in other languages today. This project aims to fill the gap in .NET. (https://github.com/moodmosaic/Fare/blob/master/LICENSE)
License: MIT License
License File: Fare.license
Flurl.Http.Signed - A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain. (https://raw.githubusercontent.com/tmenier/Flurl/master/LICENSE)
License: MIT License
License File: Flurl.Http.Signed.license
Flurl.Signed - A fluent, portable URL builder. To make HTTP calls off the fluent chain, check out Flurl.Http. (https://raw.githubusercontent.com/tmenier/Flurl/master/LICENSE)
License: MIT License
License File: Flurl.Signed.license
FolkerKinzel.VCards -.NET library to read, write and convert VCF files that match the vCard standards 2.1, 3.0 and 4.0. (https://github.com/FolkerKinzel/VCards/blob/master/LICENSE)
License: MIT License
License File: FolkerKinzel.VCards.license
FredCK.FCKeditorV2 - FCKeditor is a text editor to be used inside web pages. In 2009 it was renamed CKEditor. (http://ckeditor.com/what-is-ckeditor) (https://download.cksource.com/FCKeditor/FCKeditor/2.6.3/)
License: GPL 2 (or later) or LGPL 2.1 (or later) or MPL 1.1 (or later)
License File: FredCK.FCKeditorV2.license
Google.Api.Gax - Support classes for Google API client libraries (https://www.nuget.org/packages/Google.Api.Gax/3.0.0/License)
License: Google License (BSD?)
License File: Google.Api.Gax.license
Google.Api.Gax.Rest - Common Protocol Buffer messages for Google APIs (https://www.nuget.org/packages/Google.Api.Gax.Rest/3.0.0/License)
License: Google License (BSD?)
License File: Google.Api.Gax.Rest.license
Google.Apis - The Google APIs Client Library is a runtime client for working with Google services. The library supports service requests, media upload and download, etc. (https://www.nuget.org/packages/Google.Apis/1.45.0/License)
License: Apache License 2.0
License File: Google.Apis.license
Google.Apis.Auth - The Google APIs Client Library is a runtime client for working with Google services. This package includes auth components like user-credential, authorization code flow, etc. for making authenticated calls using the OAuth2 spec. (https://www.nuget.org/packages/Google.Apis.Auth/1.45.0/License)
License: Apache License 2.0
License File: Google.Apis.Auth.license
Google.Apis.Core - The Google APIs Core Library contains the Google APIs HTTP layer, JSON support, Data-store, logging and so on. (https://www.nuget.org/packages/Google.Apis.Core/1.45.0/License)
License: Apache License 2.0
License File: Google.Apis.Core.license
Google.Apis.Drive.v3 - Google APIs Client Library for working with Drive v3. (https://www.nuget.org/packages/Google.Apis.Drive.v3/1.45.0.1911/License)
License: Apache License 2.0
License File: Google.Apis.Drive.v3.license
Google.Apis.Storage.v1 - This is not the recommended package for working with Storage, please use the Google.Cloud.Storage.V1 package. This Google APIs Client Library for working with Storage v1 uses older code generation, and is harder to use. (https://www.nuget.org/packages/Google.Apis.Storage.v1/1.45.0.1911/License)
License: Apache License 2.0
License File: Google.Apis.Storage.v1.license
Google.Cloud.Storage.V1 - Recommended Google client library to access the Google Cloud Storage API. It wraps the Google.Apis.Storage.v1 client library, making common operations simpler in client code. Google Cloud Storage stores and retrieves potentially large, immutable data objects. There is a newer prerelease version of this package available. (https://www.nuget.org/packages/Google.Cloud.Storage.V1/2.5.0/License)
License: Apache License 2.0
License File: Google.Cloud.Storage.V1.license
Google.Protobuf - C# runtime library for Protocol Buffers - Google's data interchange format. (https://github.com/protocolbuffers/protobuf/blob/master/LICENSE)
License: Google License (BSD?)
License File: Google.Protobuf.license
Google.Protobuf - C# runtime library for Protocol Buffers - Google's data interchange format. (https://github.com/protocolbuffers/protobuf/blob/master/LICENSE)
License: Google License (BSD?)
License File: Google.Protobuf.license
GoogleAuthenticator - Provides an easy-to-use library for implementing Two-Factor Authentication with Google Authenticator or Authy. (https://github.com/BrandonPotter/GoogleAuthenticator/blob/master/LICENSE)
License: Apache License 2.0
License File: GoogleAuthenticator.license
HtmlAgilityPack - This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (https://github.com/zzzprojects/html-agility-pack/blob/master/LICENSE)
License: MIT License
License File: HtmlAgilityPack.license
Ical.Net - An iCalendar (RFC 5545) control library for .NET. (https://github.com/rianjs/ical.net/blob/master/license.md)
License: MIT License
License File: Ical.Net.license
jQuery - jQuery is a new kind of JavaScript Library. jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at https://nugetpackages.codeplex.com/ (https://jquery.org/license/)
License: MIT License
License File: jQuery.license
jQuery.BlockUI - The jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX, without locking the browser. (https://github.com/malsup/blockui/)
License: MIT License, GPL licenses
License File: jQuery.BlockUI.license
jQuery.FileUpload - File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads. (https://github.com/blueimp/jQuery-File-Upload/blob/master/LICENSE.txt)
License: MIT License
License File: jQuery.FileUpload.license
jquery.mousewheel - Adds mouse wheel support for your application! Just call mousewheel to add the event and call unmousewheel to remove the event. (https://github.com/brandonaaron/jquery-mousewheel/blob/master/LICENSE.txt)
License: MIT License
License File: jquery.mousewheel.license
jQuery.UI.Combined - jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library . Each component is built according to jQuery's event-driven architecture (find something, manipulate it) and is themeable, making it easy for developers of any skill level to integrate and extend into their own code. (https://jquery.org/license/)
License: MIT License
License File: jQuery.UI.Combined.license
JWT - JWT (JSON Web Token) Implementation for .NET (Public Domain) (https://github.com/jwt-dotnet/jwt/blob/master/LICENSE.md)
License: MIT License
License File: JWT.license
libphonenumber-csharp - C# port of Google's common Java, C++ and Javascript library for parsing, formatting, storing and validating international phone numbers. http://code.google.com/p/libphonenumber/ (http://www.apache.org/licenses/LICENSE-2.0)
License: Apache License 2.0
License File: libphonenumber-csharp.license
LiteDB - Embedded .NET NoSQL Document Store in a single data file (https://github.com/mbdavid/LiteDB/blob/master/LICENSE)
License: MIT License
License File: LiteDB.license
log4net - log4net is a tool to help the programmer output log statements to a variety of output targets. In case of problems with an application, it is helpful to enable logging so that the problem can be located. With log4net it is possible to enable logging at runtime without modifying the application binary. The log4net package is designed so that log statements can remain in shipped code without incurring a high performance cost. It follows that the speed of logging (or rather not logging) is crucial. (http://logging.apache.org/log4net/license.html)
License: Apache License 2.0
License File: log4net.license
LumenWorksCsvReader - An extended version of LumenWorks.Frameworks.IO (https://github.com/phatcher/CsvReader/blob/master/License.md)
License: MIT License
License File: LumenWorksCsvReader.license
MailKit - MailKit is an Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices. (https://licenses.nuget.org/MIT)
License: MIT License
License File: MailKit.license
Marvin.JsonPatch.Signed - JSON Patch (https://tools.ietf.org/html/rfc6902) defines a JSON document structure for expressing a sequence of operations to apply to a JavaScript Object Notation (JSON) document; it is suitable for use with the HTTP PATCH method. The "application/json-patch+json" media type is used to identify such patch documents. (https://github.com/KevinDockx/JsonPatch/blob/master/LICENSE)
License: MIT License
License File: Marvin.JsonPatch.Signed.license
Microsoft.AspNetCore.Cryptography.Internal - Infrastructure for ASP.NET Core cryptographic packages. (https://github.com/dotnet/aspnetcore/blob/master/LICENSE.txt)
License: Apache License 2.0
License File: Microsoft.AspNetCore.Cryptography.Internal.license
Microsoft.AspNetCore.Cryptography.KeyDerivation - ASP.NET Core utilities for key derivation. (https://github.com/dotnet/aspnetcore/blob/master/LICENSE.txt)
License: Apache License 2.0
License File: Microsoft.AspNetCore.Cryptography.KeyDerivation.license
Microsoft.AspNet.Cors - This package contains the core components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.Cors.license
Microsoft.AspNet.Mvc - This package contains the runtime assemblies for ASP.NET MVC. ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and that gives you full control over markup. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.Mvc.license
Microsoft.AspNet.Razor - This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.Razor.license
Microsoft.AspNet.Web.Optimization - ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files. (https://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_enu.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.Web.Optimization.license
Microsoft.AspNet.WebApi - This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.license
Microsoft.AspNet.WebApi.Client - This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Client.license
Microsoft.AspNet.WebApi.Client - This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Client.license
Microsoft.AspNet.WebApi.Core - This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Core.license
Microsoft.AspNet.WebApi.Core - This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Core.license
Microsoft.AspNet.WebApi.Cors - This package contains the components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET Web API. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Cors.license
Microsoft.AspNet.WebApi.Owin - This package allows you to host ASP.NET Web API within an OWIN server and provides access to additional OWIN features. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.Owin.license
Microsoft.AspNet.WebApi.WebHost - This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.WebHost.license
Microsoft.AspNet.WebApi.WebHost - This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebApi.WebHost.license
Microsoft.AspNet.WebPages - This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages. (https://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.AspNet.WebPages.license
Microsoft.Bcl - This packages enables projects targeting down-level platforms to use some of the types added in later versions including: - CallerMemberNameAttribute - CallerLineNumberAttribute - CallerFilePathAttribute - Tuple<T1, T2, ...> - IProgress<T> - IStructuralComparable - IStructuralEquatable - Task - InvalidDataException (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Bcl.license
Microsoft.Bcl.Async - This package enables Visual Studio 2012 projects to use the new 'async' and 'await' keywords. This package also includes Task-based extension methods that allow using some of the existing asynchronous APIs with the new language keywords. Windows Phone Silverlight 8 projects can use this package to get access to async extension methods for the networking types. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Bcl.Async.license
Microsoft.Bcl.AsyncInterfaces - Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.Bcl.AsyncInterfaces.license
Microsoft.Bcl.Build - This package provides build infrastructure components so that projects referencing specific Microsoft packages can successfully build. Do not directly reference this packages unless you receive a build warning that instructs you to add a reference. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Bcl.Build.license
Microsoft.CSharp - Provides support for compilation and code generation, including dynamic, using the C# language. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.CSharp.license
Microsoft.Extensions.DependencyInjection - Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection. (https://licenses.nuget.org/Apache-2.0)
License: Apache License 2.0
License File: Microsoft.Extensions.DependencyInjection.license
Microsoft.Extensions.DependencyInjection.Abstractions - Abstractions for dependency injection. Commonly used types: Microsoft.Extensions.DependencyInjection.IServiceCollection (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.Extensions.DependencyInjection.Abstractions.license
Microsoft.Graph.Core - Microsoft Graph Core Client Library implements core functionality used by Microsoft Graph client libraries. (https://www.nuget.org/packages/Microsoft.Graph.Core/1.20.1/License)
License: MIT License
License File: Microsoft.Graph.Core.license
Microsoft.IdentityModel.Logging - Includes Event Source based logging support. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.IdentityModel.Logging.license
Microsoft.IdentityModel.Tokens - Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.IdentityModel.Tokens.license
Microsoft.IdentityModel.Tokens.Jwt - Includes types that provide support for creating, serializing and validating JSON Web Tokens. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.IdentityModel.Tokens.Jwt.license
Microsoft.Net.Http - This package includes HttpClient for sending requests over HTTP, as well as HttpRequestMessage and HttpResponseMessage for processing HTTP messages. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Net.Http.license
Microsoft.NETCore.Platforms - Provides runtime information required to resolve target framework, platform, and runtime specific implementations of .NETCore packages. When using NuGet 3.x this package requires at least version 3.4. (https://licenses.nuget.org/MIT)
License: MIT License
License File: Microsoft.NETCore.Platforms.license
Microsoft.OneDriveSDK - Integrate the OneDrive API into your .NET App! (https://github.com/OneDrive/onedrive-sdk-csharp/blob/master/LICENSE.txt)
License: MIT License
License File: Microsoft.OneDriveSDK.license
Microsoft.Owin - Provides a set of helper types and abstractions for simplifying the creation of OWIN components. (https://raw.githubusercontent.com/aspnet/AspNetKatana/v4.0.1/LICENSE.txt)
License: Apache License 2.0
License File: Microsoft.Owin.license
Microsoft.Owin.Hosting - Provides default infrastructure types for hosting and running OWIN-based applications. (https://raw.githubusercontent.com/aspnet/AspNetKatana/v4.0.1/LICENSE.txt)
License: Apache License 2.0
License File: Microsoft.Owin.Hosting.license
Microsoft.SharePointOnline.CSOM - This package contains SharePoint and Project Client Object Model libraries (https://www.nuget.org/packages/Microsoft.SharePointOnline.CSOM/16.1.20122.12000)
License: MICROSOFT SOFTWARE LICENSE TERMS
License File: Microsoft.SharePointOnline.CSOM.license
Microsoft.Web.Infrastructure - This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time. (https://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Web.Infrastructure.license
Microsoft.Win32.Primitives - Provides common types for Win32-based libraries. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: Microsoft.Win32.Primitives.license
MimeKit - MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files. (https://licenses.nuget.org/MIT)
License: MIT License
License File: MimeKit.license
Mono.Security - Mono.Security containing utilities like Authenticode. (https://github.com/mono/mono/blob/master/LICENSE)
License: MIT License
License File: Mono.Security.license
MSTest.TestAdapter - The adapter to discover and execute MSTest Framework based tests. (https://www.nuget.org/packages/MSTest.TestAdapter/2.1.0/License)
License: MIT License
License File: MSTest.TestAdapter.license
MSTest.TestFramework - This is MSTest V2, the evolution of Microsoft's Test Framework. (https://www.nuget.org/packages/MSTest.TestFramework/2.1.0/License)
License: MIT License
License File: MSTest.TestFramework.license
MySql.Data - MySql.Data.MySqlClient .Net Core Class Library (https://downloads.mysql.com/docs/licenses/connector-net-8.0-gpl-en.pdf)
License: MySQL License
License File: MySql.Data.license
NEST - Strongly typed interface to Elasticsearch. Fluent and classic object initializer mappings of requests and responses. Uses and exposes Elasticsearch.Net (https://github.com/elastic/elasticsearch-net/blob/master/license.txt)
License: Apache License 2.0
License File: NEST.license
NETStandard.Library - A set of standard .NET APIs that are prescribed to be used and supported together. (https://github.com/dotnet/standard/blob/master/LICENSE.TXT)
License: MIT License
License File: NETStandard.Library.license
Newtonsoft.Json - Json.NET is a popular high-performance JSON framework for .NET (https://licenses.nuget.org/MIT)
License: MIT License
License File: Newtonsoft.Json.license
Newtonsoft.Json - Json.NET is a popular high-performance JSON framework for .NET (https://raw.githubusercontent.com/JamesNK/Newtonsoft.Json/master/LICENSE.md)
License: MIT License
License File: Newtonsoft.Json.license
Nito.AsyncEx - A helper library for the Task-Based Asynchronous Pattern (TAP). (https://github.com/StephenCleary/AsyncEx/blob/master/LICENSE)
License: MIT License
License File: Nito.AsyncEx.license
NLog - NLog is a logging platform for .NET with rich log routing and management capabilities. NLog supports traditional logging, structured logging and the combination of both. (https://github.com/NLog/NLog/blob/master/LICENSE.txt)
License: BSD 3-Clause "New" or "Revised" License
License File: NLog.license
NodaTime - Noda Time is a date and time API acting as an alternative to the built-in DateTime/DateTimeOffset etc types built into the .NET framework. (http://www.apache.org/licenses/LICENSE-2.0)
License: Apache License 2.0
License File: NodaTime.license
Novell.Directory.LDAP - LDAP client library (https://github.com/dsbenghe/Novell.Directory.Ldap.NETStandard/blob/master/LICENSE)
License: MIT License
License File: Novell.Directory.LDAP.license
NUglify - NUglify provides minify and compression methods for CSS, JavaScript and HTML files. (https://github.com/trullock/NUglify/blob/master/license.txt)
License: BSD-2-Clause License
License File: NUglify.license
NUnit - NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. (https://github.com/nunit/nunit/blob/master/LICENSE.txt)
License: MIT License
License File: NUnit.license
NVelocity - NVelocity is a port of the excellent Apache Jakarta Velocity project. It is a very simple, easy to learn and extensible template engine. (http://www.apache.org/licenses/LICENSE-2.0.html)
License: Apache License 2.0
License File: NVelocity.license
openstack.net - An OpenStack SDK for Microsoft .NET (http://www.openstacknetsdk.org/docs/html/8b286b82-7aaf-4e45-9ffc-adbd7dbcfaa6.htm)
License: MIT License, Open Source Licenses
License File: openstack.net.license
Owin - OWIN IAppBuilder startup interface (https://github.com/owin-contrib/owin-hosting/blob/master/LICENSE.txt)
License: Apache License 2.0
License File: Owin.license
Pipelines.Sockets.Unofficial - Package Description (https://raw.githubusercontent.com/mgravell/Pipelines.Sockets.Unofficial/master/LICENSE)
License: MIT License
License File: Pipelines.Sockets.Unofficial.license
Polly - Polly is a library that allows developers to express resilience and transient fault handling policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. (https://github.com/App-vNext/Polly/blob/main/LICENSE.txt)
License: BSD-3-Clause "New" License
License File: Polly.license
Portable.BouncyCastle - BouncyCastle portable version with support for .NET 4, .NET Standard 2.0 (https://www.bouncycastle.org/csharp/licence.html)
License: MIT X11 License
License File: Portable.BouncyCastle.license
Rackspace - Automating all things Rackspace (https://github.com/rackspace/rackspace-net-sdk/blob/master/LICENSE)
License: Apache License 2.0
License File: Rackspace.license
RedisSessionProvider - A configurable SessionStateStoreProvider that persists data to a Redis server (https://github.com/welegan/RedisSessionProvider/blob/master/LICENSE)
License: Apache License 2.0
License File: RedisSessionProvider.license
RestSharp - Simple REST and HTTP API Client (https://github.com/restsharp/RestSharp/blob/master/LICENSE.txt)
License: Apache License 2.0
License File: RestSharp.license
SelectelSharp - The Selectel Cloud Storage SDK for .NET (https://github.com/yakovlevga/selectel-sharp/blob/master/LICENSE)
License: MIT License
License File: SelectelSharp.license
SharpCompress - SharpCompress is a compression library for NET Standard 1.3/2.0 that can unrar, decompress 7zip, decompress xz, zip/unzip, tar/untar lzip/unlzip, bzip2/unbzip2 and gzip/ungzip with forward-only reading and file random access APIs. Write support for zip/tar/bzip2/gzip is implemented. (https://github.com/adamhathcock/sharpcompress/blob/master/LICENSE.txt)
License: MIT License
License File: SharpCompress.license
SSH.NET - SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism and with broad framework support. (https://github.com/sshnet/SSH.NET/blob/master/LICENSE)
License: MIT License
License File: SSH.NET.license
StackExchange.Redis - High performance Redis client, incorporating both synchronous and asynchronous usage. (https://raw.githubusercontent.com/StackExchange/StackExchange.Redis/master/LICENSE)
License: MIT License
License File: StackExchange.Redis.license
StackExchange.Redis.Extensions.Core - StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications. (https://github.com/imperugo/StackExchange.Redis.Extensions/blob/master/LICENSE)
License: MIT License
License File: StackExchange.Redis.Extensions.Core.license
StackExchange.Redis.Extensions.LegacyConfiguration - StackExchange.Redis.Extensions.LegacyConfiguration is a library that allows you to use App.Config or WebConfig with StackExchange.Redis.Extensions (https://github.com/imperugo/StackExchange.Redis.Extensions/blob/master/LICENSE)
License: MIT License
License File: StackExchange.Redis.Extensions.LegacyConfiguration.license
System.AppContext - Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.AppContext.license
System.Buffers - Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Buffers.license
System.Collections - Provides classes that define generic collections, which allow developers to create strongly typed collections that provide better type safety and performance than non-generic strongly typed collections. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Collections.license
System.Collections.Concurrent - Provides several thread-safe collection classes that should be used in place of the corresponding types in the System.Collections.NonGeneric and System.Collections packages whenever multiple threads are accessing the collection concurrently. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Collections.Concurrent.license
System.Collections.Immutable - This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Collections.Immutable.license
System.Console - Provides the System.Console class, which represents the standard input, output and error streams for console applications (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Console.license
System.Data.SQLite.Core - The official SQLite database engine for both x86 and x64 along with the ADO.NET provider. (https://www.sqlite.org/copyright.html)
License: Public Domain
License File: System.Data.SQLite.Core.license
System.Diagnostics.Debug - Provides classes and attributes that allows basic interaction with a debugger. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Diagnostics.Debug.license
System.Diagnostics.DiagnosticSource - Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Diagnostics.DiagnosticSource.license
System.Diagnostics.PerformanceCounter - Provides the System.Diagnostics.PerformanceCounter class, which allows access to Windows performance counters. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Diagnostics.PerformanceCounter.license
System.Diagnostics.Tools - Provides attributes, such as GeneratedCodeAttribute and SuppresMessageAttribute, that are emitted or consumed by analysis tools. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Diagnostics.Tools.license
System.Diagnostics.Tracing - Provides class that enable you to create high performance tracing events to be captured by event tracing for Windows (ETW). (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Diagnostics.Tracing.license
System.Globalization - Provides classes that define culture-related information, including language, country/region, calendars in use, format patterns for dates, currency, and numbers, and sort order for strings. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Globalization.license
System.Globalization.Calendars - Provides classes for performing date calculations using specific calendars, including the Gregorian, Julian, Hijri and Korean calendars. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Globalization.Calendars.license
System.IdentityModel.Tokens.Jwt - Includes types that provide support for creating, serializing and validating JWT tokens. (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/master/LICENSE.txt)
License: MIT License
License File: System.IdentityModel.Tokens.Jwt.license
System.Interactive.Async - Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences. (https://github.com/dotnet/reactive/blob/master/LICENSE)
License: MIT License
License File: System.Interactive.Async.license
System.IO - Provides classes that support the compression and decompression of streams. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.IO.license
System.IO.Compression - Provides classes that support the compression and decompression of streams. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.IO.Compression.license
System.IO.Compression.ZipFile - Provides classes that support the compression and decompression of streams using file system paths. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.IO.Compression.ZipFile.license
System.IO.FileSystem - Provides types that allow reading and writing to files and types that provide basic file and directory support. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.IO.FileSystem.license
System.IO.FileSystem.Primitives - Provides common enumerations and exceptions for path-based I/O libraries. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.IO.FileSystem.Primitives.license
System.IO.Pipelines - Single producer single consumer byte buffer management. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.IO.Pipelines.license
System.Linq - Provides classes and interfaces that supports queries that use Language-Integrated Query (LINQ). (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Linq.license
System.Linq.Expressions - Provides classes, interfaces and enumerations that enable language-level code expressions to be represented as objects in the form of expression trees. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Linq.Expressions.license
System.Memory - Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Memory.license
System.Net.Http - Provides a programming interface for modern HTTP applications, including HTTP client components that allow applications to consume web services over HTTP and HTTP components that can be used by both clients and servers for parsing HTTP headers. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Net.Http.license
System.Net.Primitives - Provides common types for network-based libraries, including System.Net.IPAddress, System.Net.IPEndPoint, and System.Net.CookieContainer. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Net.Primitives.license
System.Net.Sockets - Provides classes such as Socket, TcpClient and UdpClient, which enable developers to send and receive data over the network. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Net.Sockets.license
System.Numerics.Vectors - Provides hardware-accelerated numeric types, suitable for high-performance processing and graphics applications. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Numerics.Vectors.license
System.ObjectModel - Provides types and interfaces that allow the creation of observable types that provide notifications to clients when changes are made to it. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.ObjectModel.license
System.Reflection - Provides types that retrieve information about assemblies, modules, members, parameters, and other entities in managed code by examining their metadata. These types also can be used to manipulate instances of loaded types, for example to hook up events or to invoke methods. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Reflection.license
System.Reflection.Extensions - Provides custom attribute extension methods for System.Reflection types. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Reflection.Extensions.license
System.Reflection.Primitives - Provides common enumerations for reflection-based libraries. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Reflection.Primitives.license
System.Reflection.TypeExtensions - Provides extensions methods for System.Type that are designed to be source-compatible with older framework reflection-based APIs. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Reflection.TypeExtensions.license
System.Resources.ResourceManager - Provides classes and attributes that allow developers to create, store, and manage various culture-specific resources used in an application. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Resources.ResourceManager.license
System.Runtime - Provides the fundamental primitives, classes and base classes that define commonly-used value and reference data types, events and event handlers, interfaces, attributes, and exceptions. This packages represents the core package, and provides the minimal set of types required to build a managed application. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.license
System.Runtime.CompilerServices.Unsafe - Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Runtime.CompilerServices.Unsafe.license
System.Runtime.CompilerServices.Unsafe - Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Runtime.CompilerServices.Unsafe.license
System.Runtime.Extensions - Provides commonly-used classes for performing mathematical functions, conversions, string comparisons and querying environment information. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.Extensions.license
System.Runtime.Handles - Provides base classes, including System.Runtime.InteropServices.CriticalHandle and System.Runtime.InteropServices.SafeHandle, for types that represent operating system handles. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.Handles.license
System.Runtime.InteropServices - Provides types that support COM interop and platform invoke services. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.InteropServices.license
System.Runtime.InteropServices.RuntimeInformation - Provides APIs to query about runtime and OS information. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.InteropServices.RuntimeInformation.license
System.Runtime.Numerics - Provides the numeric types System.Numerics.BigInteger and System.Numerics.Complex, which complement the numeric primitives, such as System.Byte, System.Double and System.Int32. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.Numerics.license
System.Runtime.Serialization.Primitives - Provides common types, including System.Runtime.Serialization.DataContractAttribute, for libraries that support data contract serialization. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Runtime.Serialization.Primitives.license
System.Security.Cryptography.Algorithms - Provides base types for cryptographic algorithms, including hashing, encryption, and signing operations. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Security.Cryptography.Algorithms.license
System.Security.Cryptography.Encoding - Provides types for representing Abstract Syntax Notation One (ASN.1)-encoded data. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Security.Cryptography.Encoding.license
System.Security.Cryptography.Primitives - Provides common types for the cryptographic libraries. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Security.Cryptography.Primitives.license
System.Security.Cryptography.X509Certificates - Provides types for reading, exporting and verifying Authenticode X.509 v3 certificates. These certificates are signed with a private key that uniquely and positively identifies the holder of the certificate. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Security.Cryptography.X509Certificates.license
System.Text.Encoding - Provides base abstract encoding classes for converting blocks of characters to and from blocks of bytes. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Text.Encoding.license
System.Text.Encoding.CodePages - Provides support for code-page based encodings, including Windows-1252, Shift-JIS, and GB2312. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Text.Encoding.CodePages.license
System.Text.Encoding.Extensions - Provides support for specific encodings, including ASCII, UTF-7, UTF-8, UTF-16, and UTF-32. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Text.Encoding.Extensions.license
System.Text.RegularExpressions - Provides the System.Text.RegularExpressions.Regex class, an implementation of a regular expression engine. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Text.RegularExpressions.license
System.Threading - Provides the fundamental synchronization primitives, including System.Threading.Monitor and System.Threading.Mutex, that are required when writing asynchronous code. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Threading.license
System.Threading.Channels - Provides types for passing data between producers and consumers. (https://licenses.nuget.org/MIT)
License: MIT License
License File: System.Threading.Channels.license
System.Threading.Tasks - Provides types that simplify the work of writing concurrent and asynchronous code. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Threading.Tasks.license
System.Threading.Tasks.Extensions - Provides additional types that simplify the work of writing concurrent and asynchronous code. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Threading.Tasks.Extensions.license
System.Threading.Tasks.Extensions - Provides additional types that simplify the work of writing concurrent and asynchronous code. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.Threading.Tasks.Extensions.license
System.Threading.Timer - Provides the System.Threading.Timer class, which is a mechanism for executing a method at specified intervals. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Threading.Timer.license
System.ValueTuple - Provides the System.ValueTuple structs, which implement the underlying types for tuples in C# and Visual Basic. (https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)
License: MIT License
License File: System.ValueTuple.license
System.Xml.ReaderWriter - Provides provides a fast, non-cached, forward-only way to read and write Extensible Markup Language (XML) data. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Xml.ReaderWriter.license
System.Xml.XDocument - Provides the classes for Language-Integrated Query (LINQ) to Extensible Markup Language (XML). LINQ to XML is an in-memory XML programming interface that enables you to modify XML documents efficiently and easily. (https://dotnet.microsoft.com/en/dotnet_library_license.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: System.Xml.XDocument.license
Telegram.Bot - The Bot API is an HTTP-based interface created for developers keen on building bots for Telegram
License: MIT License
License File Telegram.Bot.license
Textile - Textile.NET is, surprisingly, a textile formatter for .NET projects. (https://textilenet.codeplex.com/license)
License: Apache License 2.0
License File: Textile.license
Twilio - Twilio REST API helper library (https://github.com/twilio/twilio-csharp/blob/master/LICENSE.md)
License: MIT License
License File: Twilio.license
Twilio.AspNet.Mvc - Twilio helpers for ASP.NET MVC versions 3 through 5. (https://github.com/twilio/twilio-aspnet/blob/master/LICENSE)
License: Apache License 2.0
License File: Twilio.AspNet.Mvc.license
twitterizer - Twitter integration library (http://www.twitterizer.net/license/)
License: AS-IS
License File: twitterizer.license
UAParser - A .net wrapper for the ua-parser library (https://licenses.nuget.org/Apache-2.0)
License: Apache License 2.0
License File: UAParser.license
Ubiety.Dns.Core - Flexible DNS library for .NET (https://licenses.nuget.org/MIT)
License: MIT License (version 2.4.1)
License File: Ubiety.Dns.Core.license
UDE.CSharp - Compiled version of "C# port of Mozilla Universal Charset Detector" (https://github.com/errepi/ude/tree/master/license)
License: MPL 1.1, GPL 2.0, LGPL 2.1
License File: UDE.CSharp.license
WebGrease - Web Grease is a suite of tools for optimizing javascript, css files and images. (https://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm)
License: MICROSOFT .NET LIBRARY LICENSE
License File: WebGrease.license
WebSocketSharp - websocket-sharp provides the WebSocket protocol client and server. (https://raw.githubusercontent.com/sta/websocket-sharp/master/LICENSE.txt)
License: MIT License
License File: WebSocketSharp.license
====================================================================================================
npm packages
====================================================================================================
@authenio/samlify-node-xmllint - Validator module powered by node-xmllint (https://www.npmjs.com/package/@authenio/samlify-node-xmllint)
License: MIT License
License File: @authenio-samlify-node-xmllint.license
axios - Promise based HTTP client for the browser and node.js (https://github.com/axios/axios/blob/master/LICENSE)
License: MIT License
License File: axios.license
body-parser - Node.js body parsing middleware. (https://github.com/expressjs/body-parser/blob/master/LICENSE)
License: MIT License
License File: body-parser.license
co - Generator based control flow goodness for nodejs and the browser, using promises, letting you write non-blocking code in a nice-ish way. (https://github.com/tj/co/blob/master/LICENSE)
License: MIT License
License File: co.license
config - Node-config organizes hierarchical configurations for your app deployments. (https://github.com/lorenwest/node-config/blob/master/LICENSE)
License: MIT License
License File: config.license
connect-redis - connect-redis is a Redis session store backed by node_redis, and is insanely fast :). Requires redis >= 2.0.0 for the SETEX command. (https://github.com/tj/connect-redis)
License: MIT License
License File: connect-redis.license
cookie-parser - Parse Cookie header and populate req.cookies with an object keyed by the cookie names. Optionally you may enable signed cookie support by passing a secret string, which assigns req.secret so it may be used by other middleware. (https://github.com/expressjs/cookie-parser/blob/master/LICENSE)
License: MIT License
License File: cookie-parser.license
cors - CORS is a node.js package for providing a Connect/Express middleware that can be used to enable CORS with various options. (https://github.com/expressjs/cors/blob/master/LICENSE)
License: MIT License
License File: cors.license
cross-spawn - A cross platform solution to node's spawn. (https://github.com/moxystudio/node-cross-spawn/blob/master/LICENSE)
License: MIT License
License File: cross-spawn.license
debug - A tiny JavaScript debugging utility modelled after Node.js core's debugging technique. Works in Node.js and web browsers. (https://github.com/visionmedia/debug/blob/master/LICENSE)
License: MIT License
License File: debug.license
express - Fast, unopinionated, minimalist web framework for node. (https://github.com/expressjs/express/blob/master/LICENSE)
License: MIT License
License File: express.license
express-handlebars - A Handlebars view engine for Express which doesn't suck. (https://github.com/express-handlebars/express-handlebars/blob/master/LICENSE)
License: BSD 3-Clause "New" or "Revised" License
License File: express-handlebars.license
express-session - Create a session middleware with the given options. (https://github.com/expressjs/session/blob/master/LICENSE)
License: MIT License
License File: express-session.license
express-socket.io-session - Share a cookie-based express-session middleware with socket.io. Works with express > 4.0.0and socket.io > 1.0.0 and won't be backward compatible. (https://github.com/oskosk/express-socket.io-session/blob/master/LICENSE)
License: MIT License
License File: express-socket.io-session.license
filenamify-url - Convert a URL to a valid filename (https://github.com/sindresorhus/filenamify-url/blob/master/license)
License: MIT License
License File: filenamify-url.license
form-data - A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.The API of this library is inspired by the XMLHttpRequest-2 FormData Interface. (https://github.com/form-data/form-data/blob/master/License)
License: MIT License
License File: form-data.license
formidable - A Node.js module for parsing form data, especially file uploads. (https://github.com/node-formidable/formidable/blob/master/LICENSE)
License: MIT License
License File: formidable.license
get-byte - A Universal way of getting a Byte at a Given Index from a variety of in-memory data formats, including Uint8Array, Buffer, DataView, and Array Buffer (https://github.com/DanielJDufour/get-byte/blob/main/LICENSE)
License: CC0-1.0 License
License File: get-byte.license
graceful-fs - graceful-fs functions as a drop-in replacement for the fs module, making various improvements. (https://github.com/isaacs/node-graceful-fs)
License: ISC License
License File: graceful-fs.license
gulp - The streaming build system (https://github.com/gulpjs/gulp/blob/master/LICENSE)
License: MIT License
License File: gulp.license
gulp-append-prepend - Simple Gulp plugin. (https://github.com/JamesHemery/gulp-append-prepend/blob/master/LICENCE)
License: MIT License
License File: gulp-append-prepend.license
gulp-just-replace - The gulp-replace is fine. But it's painful to install it on production server as it takes many seconds to install those useless dependencies for me. (https://github.com/caiguanhao/gulp-just-replace/blob/master/LICENSE)
License: MIT License
License File: gulp-just-replace.license
help - substack way of --help. v3 of help requires at least Node.js v4. To use help with an older version, please use help@2.x. (https://github.com/evanlucas/help/blob/master/LICENSE)
License: MIT License
License File: help.license
ipaddr - an IPv6 and IPv4 address manipulation library. (https://github.com/whitequark/ipaddr.js/blob/master/LICENSE)
License: MIT License
License File: ipaddr.license
lodash - The modern build of lodash exported as Node.js/io.js modules. (https://github.com/lodash/lodash/blob/master/LICENSE)
License: MIT License
License File: lodash.license
log4js - This is a conversion of the log4js framework to work with node. I've mainly stripped out the browser-specific code and tidied up some of the javascript. (https://github.com/log4js-node/log4js-node/blob/master/LICENSE)
License: Apache License 2.0
License File: log4js.license
memorystore - A session store implementation for Express using lru-cache. (https://github.com/roccomuso/memorystore/blob/master/LICENSE)
License: MIT License
License File: memorystore.license
minify-xml - lightweight and fast XML minifier for NodeJS with a command line. (https://github.com/kristian/minify-xml/blob/master/LICENSE)
License: MIT License OR Apache License 2.0
License File: minify-xml.license
moment - A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. (https://github.com/moment/moment/blob/develop/LICENSE)
License: MIT License
License File: moment.license
morgan - HTTP request logger middleware for node.js (https://github.com/expressjs/morgan/blob/master/LICENSE)
License: MIT License
License File: morgan.license
mysql2 - MySQL client for Node.js with focus on performance. Supports prepared statements, non-utf8 encodings, binary log protocol, compression, ssl much more (https://github.com/sidorares/node-mysql2/blob/master/License)
License: MIT License
License File: mysql2.license
nconf - Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging. (https://github.com/indexzero/nconf/blob/master/LICENSE)
License: MIT License
License File: nconf.license
node-cache - A simple caching module that has set, get and delete methods and works a little bit like memcached. Keys can have a timeout (ttl) after which they expire and are deleted from the cache. All keys are stored in a single object so the practical limit is at around 1m keys. (https://github.com/node-cache/node-cache/blob/master/LICENSE)
License: MIT License
License File: node-cache.license
node-fetch - A light-weight module that brings window.fetch to Node.js (https://github.com/node-fetch/node-fetch/blob/master/LICENSE.md)
License: MIT License
License File: node-fetch.license
node-forge - A native implementation of TLS (and various other cryptographic tools) in JavaScript. (https://github.com/digitalbazaar/forge/blob/master/LICENSE)
License: BSD-3-Clause OR GPL-2.0 License
License File: node-forge.license
nodemon - For use during development of a node.js based application. (https://github.com/remy/nodemon/blob/master/LICENSE)
License: MIT License
License File: nodemon.license
phantomjs-prebuilt - An NPM installer for PhantomJS, headless webkit with JS API. (https://github.com/Medium/phantomjs)
License: Apache License 2.0
License File: phantomjs-prebuilt.license
plugin-error - Error handling for Vinyl plugins. (https://github.com/gulpjs/plugin-error/blob/master/LICENSE)
License: MIT License
License File: plugin-error.license
redis - This is a complete and feature rich Redis client for node.js. It supports all Redis commands and focuses on high performance. (https://github.com/NodeRedis/node-redis/blob/master/LICENSE)
License: MIT License
License File: redis.license
request - Simplified HTTP request client. (https://github.com/request/request/blob/master/LICENSE)
License: Apache License 2.0
License File: request.license
samlify - Highly configuarable Node.js SAML 2.0 library for Single Sign On (https://github.com/tngan/samlify/blob/master/LICENSE)
License: MIT License
License File: samlify.license
serve-favicon - Node.js middleware for serving a favicon. (https://github.com/expressjs/serve-favicon/blob/master/LICENSE)
License: MIT License
License File: serve-favicon.license
socket.io - Socket.IO enables real-time bidirectional event-based communication. (https://github.com/socketio/socket.io/blob/master/LICENSE)
License: MIT License
License File: socket.io.license
tmp - A simple temporary file and directory creator for node.js. (https://github.com/raszi/node-tmp/blob/master/LICENSE)
License: MIT License
License File: tmp.license
to-byte-array - Convert a string or buffer into a plain array of bytes. (https://github.com/finwo/to-byte-array/blob/master/LICENSE.md)
License: MIT License
License File: to-byte-array.license
ua-parser-js - A JavaScript-based User-Agent string parser. Can be used either in browser (client-side) or in node.js (server-side) environment. Also available as jQuery/Zepto plugin, Bower/Meteor package, & RequireJS/AMD module. (https://github.com/faisalman/ua-parser-js/blob/master/license.md)
License: MIT License
License File: ua-parser-js.license
url - This module has utilities for URL resolution and parsing meant to have feature parity with node.js core url module. (https://github.com/defunctzombie/node-url/blob/master/LICENSE)
License: MIT License
License File: url.license
webdav-server - WebDav server. (https://github.com/OpenMarshal/npm-WebDAV-Server/blob/master/LICENSE)
License: Unlicense License
License File: webdav-server.license
winston - A logger for just about everything. (https://github.com/winstonjs/winston/blob/master/LICENSE)
License: MIT License
License File: winston.license
winston-daily-rotate-file - A transport for winston which logs to a rotating file. Logs can be rotated based on a date, size limit, and old logs can be removed based on count or elapsed days. (https://github.com/winstonjs/winston-daily-rotate-file/blob/master/LICENSE)
License: MIT License
License File: winston-daily-rotate-file.license
yargs - Yargs helps you build interactive command line tools, by parsing arguments and generating an elegant user interface. (https://github.com/yargs/yargs/blob/master/LICENSE)
License: MIT License
License File: yargs.license
====================================================================================================
javascript plugins
====================================================================================================
ajaxpro.core.js - Ajax.NET Professional (AjaxPro) for Microsoft ASP.NET (https://github.com/michaelschwarz/Ajax.NET-Professional/blob/master/LICENSE)
License: MIT License
License File: ajaxpro.core.license
ajaxupload.js - Ajax file upload (http://valums.com/ajax-upload/) (http://valums.com/mit-license/)
License: MIT License