-
Notifications
You must be signed in to change notification settings - Fork 696
/
Copy pathNuGetLogCode.cs
1045 lines (847 loc) · 26.8 KB
/
NuGetLogCode.cs
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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace NuGet.Common
{
/// <summary>
/// This enum is used to quantify NuGet error and warning codes.
/// </summary>
/// <remarks>
/// <para>
/// Format - NUxyzw where NU is the prefix indicating NuGet and xyzw is a 4 digit code
/// </para>
///
/// Numbers - xyzw
/// x - 'x' is the largest digit and should be used to quantify a set of errors.
/// For example 1yzw are set of restore related errors and no other code path should use the range 1000 to 1999 for errors or warnings.
///
/// y - 'y' is the second largest digit and should be used for sub sections withing a broad category.
///
/// For example 12zw cvould be http related errors.
/// Further 'y' = 0-4 should be used for errors and 'y' = 5-9 should be warnings.
///
/// zw - 'zw' are the least two digit.
/// These could be used for different errors or warnings within the broad categories set by digits 'xy'.
///
/// <para>
/// Groups:
/// 1000-1999 - Restore
/// 3000-3999 - Signing
/// 5000-5999 - Packaging
/// </para>
///
/// <para>
/// Sub groups for Restore:
/// error/warning - Reason
/// 1000/1500 - Input
/// 1100/1600 - Resolver
/// 1200/1700 - Compat
/// 1300/1800 - Feed
/// 1400/1900 - Package
/// </para>
///
/// <para>
/// All new codes need a corresponding MarkDown file under https://github.com/NuGet/docs.microsoft.com-nuget/tree/master/docs/reference/errors-and-warnings.
/// </para>
/// </remarks>
public enum NuGetLogCode
{
/// <summary>
/// Do not display the code.
/// </summary>
Undefined = 0,
/// <summary>
/// Undefined error
/// </summary>
NU1000 = 1000,
/// <summary>
/// Project has zero target frameworks.
/// </summary>
NU1001 = 1001,
/// <summary>
/// Invalid combination with CLEAR
/// </summary>
NU1002 = 1002,
/// <summary>
/// Invalid combination of PTF and ATF
/// </summary>
NU1003 = 1003,
/// <summary>
/// Locked mode, but restore needs to update the lock file.
/// </summary>
NU1004 = 1004,
/// <summary>
/// Invalid combination of RestorePackagesWithLockFile and packages.lock.json file.
/// </summary>
NU1005 = 1005,
/// <summary>
/// NuGet configuration file has an invalid package source value.
/// </summary>
NU1006 = 1006,
/// <summary>
/// Project provided runtime graph is invalid. Either does not exist or cannot be parsed.
/// </summary>
NU1007 = 1007,
/// <summary>
/// Projects that use central package version management should not define the version on the PackageReference items but on the PackageVersion items.
/// </summary>
NU1008 = 1008,
/// <summary>
/// Projects that use central package version management should not define SDK implicit referenced packages. For more information, see https://aka.ms/sdkimplicitrefs
/// </summary>
NU1009 = 1009,
/// <summary>
/// The PackageReference items {0} do not have corresponding PackageVersions.
/// </summary>
NU1010 = 1010,
/// <summary>
/// Central floating versions are not allowed.
/// </summary>
NU1011 = 1011,
/// <summary>
/// Platform version not found.
/// </summary>
NU1012 = 1012,
/// <summary>
/// Projects that use central package version management are not configured to allow package version overrides.
/// </summary>
NU1013 = 1013,
/// <summary>
/// NuGetAudit* MSBuild property input errors
/// </summary>
NU1014 = 1014,
/// <summary>
/// Unable to resolve package, generic message for unknown type constraints.
/// </summary>
NU1100 = 1100,
/// <summary>
/// No versions of the package exist on any of the sources.
/// </summary>
NU1101 = 1101,
/// <summary>
/// Versions of the package exist, but none are in the range.
/// </summary>
NU1102 = 1102,
/// <summary>
/// Range does not allow prerelease packages and only prerelease versions were found
/// within the range.
/// </summary>
NU1103 = 1103,
/// <summary>
/// Project path does not exist on disk.
/// </summary>
NU1104 = 1104,
/// <summary>
/// Unable to read project information for 'ProjectFile'. The project file may be invalid or missing targets required for restore.
/// </summary>
NU1105 = 1105,
/// <summary>
/// Resolver conflict
/// </summary>
NU1106 = 1106,
/// <summary>
/// Version conflict.
/// </summary>
NU1107 = 1107,
/// <summary>
/// Circular dependency.
/// </summary>
NU1108 = 1108,
/// <summary>
/// Package dependency downgraded because of centrally defined package version.
/// </summary>
NU1109 = 1109,
/// <summary>
/// The package `packageId` is available in the Global packages folder, but the source it came from `package source URI` is not one of the configured sources.
/// </summary>
NU1110 = 1110,
/// <summary>
/// Dependency project has an incompatible framework.
/// </summary>
NU1201 = 1201,
/// <summary>
/// Dependency package does not contain assets for the current framework.
/// </summary>
NU1202 = 1202,
/// <summary>
/// un-matched reference assemblies
/// </summary>
NU1203 = 1203,
/// <summary>
/// Invalid package types
/// </summary>
NU1204 = 1204,
/// <summary>
/// Project has an invalid dependency count
/// </summary>
NU1211 = 1211,
/// <summary>
/// Incompatible tools package/project combination
/// </summary>
NU1212 = 1212,
/// <summary>
/// Incompatible package type
/// </summary>
NU1213 = 1213,
/// <summary>
/// Package Source is unreachable.
/// </summary>
NU1301 = 1301,
/// <summary>
/// Insecure Source specified.
/// </summary>
NU1302 = 1302,
/// <summary>
/// Package MinClientVersion did not match.
/// </summary>
NU1401 = 1401,
/// <summary>
/// Package contains unsafe zip entry.
/// </summary>
NU1402 = 1402,
/// <summary>
/// Package sha512 validation failed.
/// </summary>
NU1403 = 1403,
/// <summary>
/// Package Signature is invalid
/// </summary>
NU1410 = 1410,
/// <summary>
/// Undefined warning
/// </summary>
NU1500 = 1500,
/// <summary>
/// Missing restore target.
/// </summary>
NU1501 = 1501,
/// <summary>
/// Unknown compatibility profile
/// </summary>
NU1502 = 1502,
/// <summary>
/// Skipping project that does not support restore.
/// </summary>
NU1503 = 1503,
/// <summary>
/// Duplicate PackageReference found
/// </summary>
NU1504 = 1504,
/// <summary>
/// Duplicate PackageDownload found
/// </summary>
NU1505 = 1505,
/// <summary>
/// Duplicate PackageVersion found
/// </summary>
NU1506 = 1506,
/// <summary>
/// Central package management is in use but there are multiple feeds configured without using package source mapping.
/// </summary>
NU1507 = 1507,
/// <summary>
/// Duplicate NuGetAuditSuppress found
/// </summary>
NU1508 = 1508,
/// <summary>
/// Duplicate PrunedPackageReference found
/// </summary>
NU1509 = 1509,
/// <summary>
/// Direct reference to a package that will not be pruned.
/// </summary>
NU1510 = 1510,
/// <summary>
/// Project references cannot be pruned
/// </summary>
NU1511 = 1511,
/// <summary>
/// Dependency bumped up
/// </summary>
NU1601 = 1601,
/// <summary>
/// Non-exact match on dependency range due to non inclusive minimum bound.
/// </summary>
NU1602 = 1602,
/// <summary>
/// Non-exact match on dependency range due to missing package version.
/// </summary>
NU1603 = 1603,
/// <summary>
/// Project dependency does not include a lower bound.
/// </summary>
NU1604 = 1604,
/// <summary>
/// Package dependency downgraded.
/// </summary>
NU1605 = 1605,
// These codes have been moved and should not be reused.
// NU1606 -> NU1108
// NU1607 -> NU1107
/// <summary>
/// Version is higher than upper bound.
/// </summary>
NU1608 = 1608,
/// <summary>
/// Fallback framework used for a package reference.
/// </summary>
NU1701 = 1701,
/// <summary>
/// Fallback framework used for a project reference.
/// </summary>
NU1702 = 1702,
/// <summary>
/// MacCatalyst platform fell back to xamarin.ios - Added in 6.0, removed in 6.1.
/// </summary>
NU1703 = 1703,
/// <summary>
/// Feed error converted to a warning when ignoreFailedSources is true.
/// </summary>
NU1801 = 1801,
/// <summary>
/// Could not update package .nupkg.metadata timestamp
/// </summary>
NU1802 = 1802,
/// <summary>
/// HTTP Source specified, but HTTP sources will be deprecated.
/// </summary>
NU1803 = 1803,
/// <summary>
/// Server/package source vulnerability issue
/// </summary>
NU1900 = 1900,
/// <summary>
/// Package with known low severity vulnerability
/// </summary>
NU1901 = 1901,
/// <summary>
/// Package with known moderate severity vulnerability
/// </summary>
NU1902 = 1902,
/// <summary>
/// Package with known high severity vulnerability
/// </summary>
NU1903 = 1903,
/// <summary>
/// Package with known critical severity vulnerability
/// </summary>
NU1904 = 1904,
/// <summary>
/// Audit source did not provide vulnerability data
/// </summary>
NU1905 = 1905,
/// <summary>
/// Undefined signature error
/// </summary>
NU3000 = 3000,
/// <summary>
/// Invalid input error
/// </summary>
NU3001 = 3001,
/// <summary>
/// The '-Timestamper' option was not provided. The signed package will not be timestamped.
/// </summary>
NU3002 = 3002,
/// <summary>
/// The package signature is invalid.
/// </summary>
NU3003 = 3003,
/// <summary>
/// The package is not signed.
/// </summary>
NU3004 = 3004,
/// <summary>
/// The package signature file entry is invalid.
/// </summary>
/// <remarks>
/// Examples which would trigger this include:
/// * the entry has incorrect external file attributes
/// * the entry is compressed not stored
/// * the entry's compressed and uncompressed sizes differ
/// </remarks>
NU3005 = 3005,
/// <summary>
/// Signed Zip64 packages are not supported.
/// </summary>
NU3006 = 3006,
/// <summary>
/// The package signature format version is not supported.
/// </summary>
NU3007 = 3007,
/// <summary>
/// The package integrity check failed.
/// </summary>
NU3008 = 3008,
/// <summary>
/// The package signature file does not contain exactly one primary signature.
/// </summary>
NU3009 = 3009,
/// <summary>
/// The primary signature does not have a signing certificate.
/// </summary>
NU3010 = 3010,
/// <summary>
/// The primary signature is invalid.
/// </summary>
NU3011 = 3011,
/// <summary>
/// Primary signature validation failed.
/// </summary>
NU3012 = 3012,
/// <summary>
/// The signing certificate has an unsupported signature algorithm.
/// </summary>
NU3013 = 3013,
/// <summary>
/// The signing certificate does not meet a minimum public key length requirement.
/// </summary>
NU3014 = 3014,
/// <summary>
/// Certificates with lifetime signer EKU are not supported.
/// </summary>
NU3015 = 3015,
/// <summary>
/// The package hash uses an unsupported hash algorithm.
/// </summary>
NU3016 = 3016,
/// <summary>
/// The signing certificate is not yet valid.
/// </summary>
NU3017 = 3017,
/// <summary>
/// Chain building failed for primary signature
/// </summary>
NU3018 = 3018,
/// <summary>
/// The timestamp integrity check failed.
/// </summary>
NU3019 = 3019,
/// <summary>
/// The timestamp signature does not have a signing certificate.
/// </summary>
NU3020 = 3020,
/// <summary>
/// Timestamp signature validation failed.
/// </summary>
NU3021 = 3021,
/// <summary>
/// The timestamp certificate has an unsupported signature algorithm.
/// </summary>
NU3022 = 3022,
/// <summary>
/// The timestamp's certificate does not meet a minimum public key length requirement.
/// </summary>
NU3023 = 3023,
/// <summary>
/// The timestamp signature has an unsupported digest algorithm.
/// </summary>
NU3024 = 3024,
/// <summary>
/// The timestamp signing certificate is not yet valid.
/// </summary>
NU3025 = 3025,
/// <summary>
/// The timestamp response is invalid. Nonces did not match.
/// </summary>
NU3026 = 3026,
/// <summary>
/// The primary signature should be timestamped to enable long-term signature validity after the certificate has expired.
/// </summary>
NU3027 = 3027,
/// <summary>
/// Chain building failed for timestamp
/// </summary>
NU3028 = 3028,
/// <summary>
/// The timestamp signature is invalid.
/// </summary>
NU3029 = 3029,
/// <summary>
/// The timestamp's message imprint uses an unsupported hash algorithm.
/// </summary>
NU3030 = 3030,
/// <summary>
/// The repository countersignature is invalid.
/// </summary>
NU3031 = 3031,
/// <summary>
/// The package signature contains multiple repository countersignatures.
/// </summary>
NU3032 = 3032,
/// <summary>
/// A repository primary signature must not have a repository countersignature.
/// </summary>
NU3033 = 3033,
/// <summary>
/// The package signature certificate does not match the trusted certificate list.
/// </summary>
NU3034 = 3034,
/// <summary>
/// Chain building failed for the repository countersignature.
/// </summary>
NU3035 = 3035,
/// <summary>
/// Timestamp Generalized time is outside certificate's valdity period
/// </summary>
NU3036 = 3036,
/// <summary>
/// The signature has expired.
/// </summary>
NU3037 = 3037,
/// <summary>
/// Verification settings require a repository countersignature, but the package does not have a repository countersignature.
/// </summary>
NU3038 = 3038,
/// <summary>
/// The package cannot be signed as it would require the Zip64 format.
/// </summary>
NU3039 = 3039,
/// <summary>
/// There where two equal certificate entries with conflicting attributes in the nuget.config
/// </summary>
NU3040 = 3040,
/// <summary>
/// Downloading a package from a plugin is not supported since unsigned packages are not allowed and package download plugins do not support signed package verification.
/// </summary>
NU3041 = 3041,
/// <summary>
/// An X.509 trust store does not contain a root certificate observed in a package signature.
/// </summary>
NU3042 = 3042,
/// <summary>
/// The certificate fingerprint is invalid.
/// </summary>
NU3043 = 3043,
/// <summary>
/// Undefined Package Error.
/// </summary>
NU5000 = 5000,
/// <summary>
/// Error_WriteResolvedNuSpecOverwriteOriginal
/// </summary>
NU5001 = 5001,
/// <summary>
/// Error_InputFileNotSpecified
/// </summary>
NU5002 = 5002,
/// <summary>
/// Error_InvalidTargetFramework
/// </summary>
NU5003 = 5003,
/// <summary>
/// Error_PackageCommandNoFilesForLibPackage
/// </summary>
NU5004 = 5004,
/// <summary>
/// Error_PackageCommandNoFilesForSymbolsPackage
/// </summary>
NU5005 = 5005,
/// <summary>
/// Error_UnableToLocateBuildOutput
/// </summary>
NU5007 = 5007,
/// <summary>
/// ErrorManifestFileNotFound
/// </summary>
NU5008 = 5008,
/// <summary>
/// Error_CannotFindMsbuild
/// </summary>
NU5009 = 5009,
/// <summary>
/// Error_InvalidVersionInPackage
/// </summary>
NU5010 = 5010,
/// <summary>
/// Error_UnableToExtractAssemblyMetadata
/// </summary>
NU5011 = 5011,
/// <summary>
/// Error_UnableToFindBuildOutput
/// </summary>
NU5012 = 5012,
/// <summary>
/// Error_FailedToBuildProject
/// </summary>
NU5013 = 5013,
/// <summary>
/// Error_ProcessingNuspecFile
/// </summary>
NU5014 = 5014,
/// <summary>
/// Error_MultipleTargetFrameworks
/// </summary>
NU5015 = 5015,
/// <summary>
/// Error_InvalidDependencyVersionConstraints
/// </summary>
NU5016 = 5016,
/// <summary>
/// Error_CannotCreateEmptyPackage
/// </summary>
NU5017 = 5017,
/// <summary>
/// Error_Manifest_InvalidReference
/// </summary>
NU5018 = 5018,
/// <summary>
/// Error_PackageAuthoring_FileNotFound
/// </summary>
NU5019 = 5019,
/// <summary>
/// Error_EmptySourceFilePath
/// </summary>
NU5020 = 5020,
/// <summary>
/// Error_EmptySourceFileProjectDirectory
/// </summary>
NU5021 = 5021,
/// <summary>
/// Error_InvalidMinClientVersion
/// </summary>
NU5022 = 5022,
/// <summary>
/// Error_AssetsFileNotFound
/// </summary>
NU5023 = 5023,
/// <summary>
/// Error_InvalidPackageVersion
/// </summary>
NU5024 = 5024,
/// <summary>
/// Error_AssetsFileDoesNotHaveValidPackageSpec
/// </summary>
NU5025 = 5025,
/// <summary>
/// Error_FileNotFound
/// </summary>
NU5026 = 5026,
/// <summary>
/// Error_InvalidTargetFramework
/// </summary>
NU5027 = 5027,
/// <summary>
/// Error_NoPackItemProvided
/// </summary>
NU5028 = 5028,
/// <summary>
/// Error_InvalidNuspecProperties
/// </summary>
NU5029 = 5029,
/// <summary>
/// Error_Manifest_LicenseFileNotInNupkg
/// </summary>
NU5030 = 5030,
/// <summary>
/// Error_Manifest_LicenseFileExtensionIsInvalid
/// </summary>
NU5031 = 5031,
/// <summary>
/// Error_Manifest_LicenseExpressionIsUnparseable
/// </summary>
NU5032 = 5032,
/// <summary>
/// Error_Manifest_InvalidLicenseMetadata
/// </summary>
NU5033 = 5033,
/// <summary>
/// Error_Manifest_InvalidLicenseExpressionVersion
/// </summary>
NU5034 = 5034,
/// <summary>
/// Error_Manifest_LicenseUrlCannotBeUsedWithLicenses
/// </summary>
NU5035 = 5035,
/// <summary>
/// https://aka.ms/malformedNuGetLicenseUrl
/// </summary>
NU5036 = 5036,
/// <summary>
/// Error_MissingNuspecFile
/// </summary>
NU5037 = 5037,
/// <summary>
/// Error_ReadmeFileExtensionIsInvalid
/// </summary>
NU5038 = 5038,
/// <summary>
/// Error_ReadmeNoFileElement
/// </summary>
NU5039 = 5039,
/// <summary>
/// Error_ReadmeErrorEmpty
/// </summary>
NU5040 = 5040,
/// <summary>
/// Error_ReadmeCannotOpenFile
/// </summary>
NU5041 = 5041,
/// <summary>
/// Error_ProjectJsonPack_Deprecated_And_Disabled
/// </summary>
NU5042 = 5042,
/// <summary>
/// Invalid icon extension error
/// </summary>
NU5045 = 5045,
/// <summary>
/// Error_Manifest_IconCannotOpenFile
/// </summary>
NU5046 = 5046,
/// <summary>
/// Error_Icon_InvalidSize
/// </summary>
NU5047 = 5047,
/// <summary>
/// IconUrlDeprecationWarning
/// </summary>
NU5048 = 5048,
/// <summary>
/// Packing an SDK-based project with NuGet.exe error
/// </summary>
NU5049 = 5049,
/// <summary>
/// Attempted to write files from multiple sources into the same location
/// </summary>
NU5050 = 5050,
/// <summary>
/// AssemblyOutsideLibWarning
/// </summary>
NU5100 = 5100,
/// <summary>
/// AssemblyDirectlyUnderLibWarning
/// </summary>
NU5101 = 5101,
/// <summary>
/// DefaultSpecValueWarning
/// </summary>
NU5102 = 5102,
/// <summary>
/// InvalidFrameworkWarning
/// </summary>
NU5103 = 5103,
/// <summary>
/// InvalidPrereleaseDependencyWarning
/// </summary>
NU5104 = 5104,
/// <summary>
/// LegacyVersionWarning
/// </summary>
NU5105 = 5105,
/// <summary>
/// WinRTObsoleteWarning
/// </summary>
NU5106 = 5106,
/// <summary>
/// MisplacedInitScriptWarning
/// </summary>
NU5107 = 5107,
/// <summary>
/// MisplacedTransformFileWarning
/// </summary>
NU5108 = 5108,
/// <summary>
/// PlaceholderFileInPackageWarning
/// </summary>
NU5109 = 5109,
/// <summary>
/// ScriptOutsideToolsWarning
/// </summary>
NU5110 = 5110,
/// <summary>
/// UnrecognizedScriptWarning
/// </summary>
NU5111 = 5111,
/// <summary>
/// UnspecifiedDependencyVersionWarning
/// </summary>
NU5112 = 5112,
/// <summary>
/// Warning_DuplicatePropertyKey
/// </summary>
NU5114 = 5114,
/// <summary>
/// Warning_UnspecifiedField
/// </summary>
NU5115 = 5115,
/// <summary>
/// Warning_FileDoesNotExist
/// </summary>
NU5116 = 5116,
/// <summary>
/// Warning_UnresolvedFilePath
/// </summary>
NU5117 = 5117,
/// <summary>
/// Warning_FileNotAddedToPackage
/// </summary>
NU5118 = 5118,
/// <summary>
/// Warning_FileExcludedByDefault
/// </summary>
NU5119 = 5119,
/// <summary>
/// Migrator_PackageHasInstallScript
/// </summary>
NU5120 = 5120,
/// <summary>
/// Migrator_PackageHasContentFolder
/// </summary>
NU5121 = 5121,
/// <summary>
/// Migrator_XdtTransformInPackage
/// </summary>
NU5122 = 5122,
/// <summary>
/// Warning_FilePathTooLong
/// </summary>
NU5123 = 5123,
/// <summary>
/// Warning_UnrecognizedLicenseIdentifier
/// </summary>
NU5124 = 5124,
/// <summary>
/// LicenseUrlDeprecated
/// </summary>
NU5125 = 5125,
///<summary>
/// ProjectJsonPack_Deprecated
/// </summary>
NU5126 = 5126,
/// <summary>