-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
2668 lines (2371 loc) · 112 KB
/
Strings.Designer.cs
File metadata and controls
2668 lines (2371 loc) · 112 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace NuGet.Commands {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NuGet.Commands.Strings", typeof(Strings).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The argument cannot be null or empty..
/// </summary>
internal static string ArgumentCannotBeNullOrEmpty {
get {
return ResourceManager.GetString("ArgumentCannotBeNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' cannot be used in conjunction with other values..
/// </summary>
internal static string CannotBeUsedWithOtherValues {
get {
return ResourceManager.GetString("CannotBeUsedWithOtherValues", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}File path: {1}.
/// </summary>
internal static string ClientCertificatesFileCertFilePath {
get {
return ResourceManager.GetString("ClientCertificatesFileCertFilePath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Password: -.
/// </summary>
internal static string ClientCertificatesFileCertNoPassword {
get {
return ResourceManager.GetString("ClientCertificatesFileCertNoPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Password: ****.
/// </summary>
internal static string ClientCertificatesFileCertWithPassword {
get {
return ResourceManager.GetString("ClientCertificatesFileCertWithPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Certificates status: {1}.
/// </summary>
internal static string ClientCertificatesItemCertificateError {
get {
return ResourceManager.GetString("ClientCertificatesItemCertificateError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Certificate: {1}.
/// </summary>
internal static string ClientCertificatesItemCertificateMessage {
get {
return ResourceManager.GetString("ClientCertificatesItemCertificateMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}{1} [{2}].
/// </summary>
internal static string ClientCertificatesLogTitle {
get {
return ResourceManager.GetString("ClientCertificatesLogTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Find by: {1}.
/// </summary>
internal static string ClientCertificatesStoreCertFindBy {
get {
return ResourceManager.GetString("ClientCertificatesStoreCertFindBy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Find value: {1}.
/// </summary>
internal static string ClientCertificatesStoreCertFindValue {
get {
return ResourceManager.GetString("ClientCertificatesStoreCertFindValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Store location: {1}.
/// </summary>
internal static string ClientCertificatesStoreCertStoreLocation {
get {
return ResourceManager.GetString("ClientCertificatesStoreCertStoreLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Store name: {1}.
/// </summary>
internal static string ClientCertificatesStoreCertStoreName {
get {
return ResourceManager.GetString("ClientCertificatesStoreCertStoreName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' was successfully added..
/// </summary>
internal static string ClientCertificateSuccessfullyAdded {
get {
return ResourceManager.GetString("ClientCertificateSuccessfullyAdded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' was successfully removed..
/// </summary>
internal static string ClientCertificateSuccessfullyRemoved {
get {
return ResourceManager.GetString("ClientCertificateSuccessfullyRemoved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' was successfully updated..
/// </summary>
internal static string ClientCertificateSuccessfullyUpdated {
get {
return ResourceManager.GetString("ClientCertificateSuccessfullyUpdated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to add trusted author. The package is not author signed..
/// </summary>
internal static string Error_AuthorTrustExpectedAuthorSignature {
get {
return ResourceManager.GetString("Error_AuthorTrustExpectedAuthorSignature", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find version of msbuild..
/// </summary>
internal static string Error_CannotFindMsbuild {
get {
return ResourceManager.GetString("Error_CannotFindMsbuild", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Trusted owners are not supported in trusted author items..
/// </summary>
internal static string Error_CannotTrustOwnersForAuthor {
get {
return ResourceManager.GetString("Error_CannotTrustOwnersForAuthor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageVersion items cannot specify a floating version: {0}. For more information on how to enable this functionality for projects using Central Package Management, visit https://aka.ms/nu1011.
/// </summary>
internal static string Error_CentralPackageManagement_FloatingVersionsNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_FloatingVersionsNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageReference items are implicitly defined and cannot define a PackageVersion item: {0}. Projects using Central Package Management require that implicit package versions be specified by the PackageReference item. For more information, visit https://aka.ms/sdkimplicitrefs.
/// </summary>
internal static string Error_CentralPackageManagement_ImplicitPackageReferenceWithVersionNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_ImplicitPackageReferenceWithVersionNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageReference items do not define a corresponding PackageVersion item: {0}. Projects using Central Package Management must declare PackageReference and PackageVersion items with matching names. For more information, visit https://aka.ms/nuget/cpm/gettingstarted.
/// </summary>
internal static string Error_CentralPackageManagement_MissingPackageVersion {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_MissingPackageVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The centrally pinned dependency '{0}' was not found in the resolved graph unexpectedly for node '{1}'. Please file an issue at https://github.com/NuGet/Home.
/// </summary>
internal static string Error_CentralPackageManagement_MissingTransitivelyPinnedIncludeType {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_MissingTransitivelyPinnedIncludeType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageReference items cannot define a value for Version: {0}. Projects using Central Package Management must define a Version value on a PackageVersion item. For more information, visit https://aka.ms/nuget/cpm/gettingstarted.
/// </summary>
internal static string Error_CentralPackageManagement_PackageReferenceWithVersionNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_PackageReferenceWithVersionNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageReference items cannot specify a value for VersionOverride: {0}. Projects using Central Package Management are currently configured to disable this functionality. For more information, visit https://aka.ms/nuget/cpm/versionoverride.
/// </summary>
internal static string Error_CentralPackageManagement_VersionOverrideNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageManagement_VersionOverrideNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' already exists..
/// </summary>
internal static string Error_ClientCertificateAlreadyExist {
get {
return ResourceManager.GetString("Error_ClientCertificateAlreadyExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' does not exist.
/// </summary>
internal static string Error_ClientCertificateNotExist {
get {
return ResourceManager.GetString("Error_ClientCertificateNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificates were not found..
/// </summary>
internal static string Error_ClientCertificatesNotFound {
get {
return ResourceManager.GetString("Error_ClientCertificatesNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client certificate configured for the package source '{0}' cannot be modified due to a type mismatch..
/// </summary>
internal static string Error_ClientCertificateTypeMismatch {
get {
return ResourceManager.GetString("Error_ClientCertificateTypeMismatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not add the trusted signer: {0}.
/// </summary>
internal static string Error_CouldNotAdd {
get {
return ResourceManager.GetString("Error_CouldNotAdd", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not list the trusted signers: {0}.
/// </summary>
internal static string Error_CouldNotList {
get {
return ResourceManager.GetString("Error_CouldNotList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not remove the trusted signer: {0}.
/// </summary>
internal static string Error_CouldNotRemove {
get {
return ResourceManager.GetString("Error_CouldNotRemove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not sync the trusted repository: {0}.
/// </summary>
internal static string Error_CouldNotSync {
get {
return ResourceManager.GetString("Error_CouldNotSync", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not update the client certificate: {0}.
/// </summary>
internal static string Error_CouldNotUpdateClientCertificate {
get {
return ResourceManager.GetString("Error_CouldNotUpdateClientCertificate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating last access time on file {0} failed with {1}.
/// </summary>
internal static string Error_CouldNotUpdateMetadataLastAccessTime {
get {
return ResourceManager.GetString("Error_CouldNotUpdateMetadataLastAccessTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The repository with the service index '{0}' does not list any trusted certificates..
/// </summary>
internal static string Error_EmptyCertificateListInRepository {
get {
return ResourceManager.GetString("Error_EmptyCertificateListInRepository", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A source file was added with an empty path..
/// </summary>
internal static string Error_EmptySourceFilePath {
get {
return ResourceManager.GetString("Error_EmptySourceFilePath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The project directory for the source file '{0}' could not be found..
/// </summary>
internal static string Error_EmptySourceFileProjectDirectory {
get {
return ResourceManager.GetString("Error_EmptySourceFileProjectDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are running the '{0}' operation with an 'HTTP' source: {1}. NuGet requires HTTPS sources. To use an HTTP source, you must explicitly set 'allowInsecureConnections' to true in your NuGet.Config file. Refer to https://aka.ms/nuget-https-everywhere for more information..
/// </summary>
internal static string Error_HttpSource_Single {
get {
return ResourceManager.GetString("Error_HttpSource_Single", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are running the '{0}' operation with an 'HTTP' source: {1}. NuGet requires HTTPS sources. Refer to https://aka.ms/nuget-https-everywhere for more information..
/// </summary>
internal static string Error_HttpSource_Single_Short {
get {
return ResourceManager.GetString("Error_HttpSource_Single_Short", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are running the '{0}' operation with 'HTTP' sources: {1}. NuGet requires HTTPS sources. To use HTTP sources, you must explicitly set 'allowInsecureConnections' to true in your NuGet.Config file. Refer to https://aka.ms/nuget-https-everywhere for more information..
/// </summary>
internal static string Error_HttpSources_Multiple {
get {
return ResourceManager.GetString("Error_HttpSources_Multiple", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package {0} {1} has a package type {2} that is incompatible with this project..
/// </summary>
internal static string Error_IncompatiblePackageType {
get {
return ResourceManager.GetString("Error_IncompatiblePackageType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify a nuspec, project.json, or project file to use.
/// </summary>
internal static string Error_InputFileNotSpecified {
get {
return ResourceManager.GetString("Error_InputFileNotSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageTargetFallback and AssetTargetFallback cannot be used together. Remove PackageTargetFallback(deprecated) references from the project environment..
/// </summary>
internal static string Error_InvalidATF {
get {
return ResourceManager.GetString("Error_InvalidATF", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid certificate information from the service index '{0}'..
/// </summary>
internal static string Error_InvalidCertificateInformationFromServer {
get {
return ResourceManager.GetString("Error_InvalidCertificateInformationFromServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid combination of arguments..
/// </summary>
internal static string Error_InvalidCombinationOfArguments {
get {
return ResourceManager.GetString("Error_InvalidCombinationOfArguments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid input '{0}'. The file type was not recognized..
/// </summary>
internal static string Error_InvalidCommandLineInput {
get {
return ResourceManager.GetString("Error_InvalidCommandLineInput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid input '{0}'. Valid file names are 'packages.config' or 'packages.*.config'..
/// </summary>
internal static string Error_InvalidCommandLineInputConfig {
get {
return ResourceManager.GetString("Error_InvalidCommandLineInputConfig", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid input '{0}'. Valid file names are 'project.json' or '*.project.json'..
/// </summary>
internal static string Error_InvalidCommandLineInputJson {
get {
return ResourceManager.GetString("Error_InvalidCommandLineInputJson", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package version constraints for '{0}' return a version range that is empty..
/// </summary>
internal static string Error_InvalidDependencyVersionConstraints {
get {
return ResourceManager.GetString("Error_InvalidDependencyVersionConstraints", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid restore input where RestorePackagesWithLockFile property is set to false but a packages lock file exists at {0}..
/// </summary>
internal static string Error_InvalidLockFileInput {
get {
return ResourceManager.GetString("Error_InvalidLockFileInput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid NuGetAuditLevel value '{0}'. Valid values: {1}.
/// </summary>
internal static string Error_InvalidNuGetAuditLevelValue {
get {
return ResourceManager.GetString("Error_InvalidNuGetAuditLevelValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid NuGetAuditMode value '{0}'. Valid values: {1}.
/// </summary>
internal static string Error_InvalidNuGetAuditModeValue {
get {
return ResourceManager.GetString("Error_InvalidNuGetAuditModeValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid NuGetAudit value '{0}'. Valid values: {1}.
/// </summary>
internal static string Error_InvalidNuGetAuditValue {
get {
return ResourceManager.GetString("Error_InvalidNuGetAuditValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid project-package combination for {0} {1}. DotnetToolReference project style can only contain references of the DotnetTool type.
/// </summary>
internal static string Error_InvalidProjectPackageCombo {
get {
return ResourceManager.GetString("Error_InvalidProjectPackageCombo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The provided SymbolPackageFormat value {0} is invalid. Allowed values : 'snupkg', 'symbols.nupkg'..
/// </summary>
internal static string Error_InvalidSymbolPackageFormat {
get {
return ResourceManager.GetString("Error_InvalidSymbolPackageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to build package because of an unsupported targetFramework value on '{0}'..
/// </summary>
internal static string Error_InvalidTargetFramework {
get {
return ResourceManager.GetString("Error_InvalidTargetFramework", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid value for WindowsTargetPlatformMinVersion: {0}.
/// </summary>
internal static string Error_InvalidWindowsTargetPlatformMinVersion {
get {
return ResourceManager.GetString("Error_InvalidWindowsTargetPlatformMinVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source parameter was not specified..
/// </summary>
internal static string Error_MissingSourceParameter {
get {
return ResourceManager.GetString("Error_MissingSourceParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} contains more than one path.
/// </summary>
internal static string Error_MultiplePackagePaths {
get {
return ResourceManager.GetString("Error_MultiplePackagePaths", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to signatureValidationMode is set to require, so packages are allowed only if signed by trusted signers; however, no trusted signers were specified..
/// </summary>
internal static string Error_NoClientAllowList {
get {
return ResourceManager.GetString("Error_NoClientAllowList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package signature did not match any of the allowed certificate fingerprints..
/// </summary>
internal static string Error_NoMatchingCertificate {
get {
return ResourceManager.GetString("Error_NoMatchingCertificate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This package is signed but not by a trusted signer..
/// </summary>
internal static string Error_NoMatchingClientCertificate {
get {
return ResourceManager.GetString("Error_NoMatchingClientCertificate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find package {0}. No packages exist with this id in source(s): {1}.
/// </summary>
internal static string Error_NoPackageVersionsExist {
get {
return ResourceManager.GetString("Error_NoPackageVersionsExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find package {0} with version {1}.
/// </summary>
internal static string Error_NoPackageVersionsExistInRange {
get {
return ResourceManager.GetString("Error_NoPackageVersionsExistInRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No signature to be trusted was specified for the package '{0}'. Specify either Author or Repository..
/// </summary>
internal static string Error_NoSignatureTrustedForPackage {
get {
return ResourceManager.GetString("Error_NoSignatureTrustedForPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to get package sources information..
/// </summary>
internal static string Error_NoSourcesInformation {
get {
return ResourceManager.GetString("Error_NoSourcesInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find a stable package {0} with version {1}.
/// </summary>
internal static string Error_NoStablePackageVersionsExist {
get {
return ResourceManager.GetString("Error_NoStablePackageVersionsExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is not a supported hash algorithm..
/// </summary>
internal static string Error_NotSupportedHashAlgorithm {
get {
return ResourceManager.GetString("Error_NotSupportedHashAlgorithm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to build package. Ensure '{0}' includes assembly files. For help on building symbols package, visit {1}..
/// </summary>
internal static string Error_PackageCommandNoFilesForLibPackage {
get {
return ResourceManager.GetString("Error_PackageCommandNoFilesForLibPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to build package. Ensure '{0}' includes source and symbol files. For help on building symbols package, visit {1}..
/// </summary>
internal static string Error_PackageCommandNoFilesForSymbolsPackage {
get {
return ResourceManager.GetString("Error_PackageCommandNoFilesForSymbolsPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0}' does not have an exact version like '[1.0.0]'. Only exact versions are allowed with PackageDownload..
/// </summary>
internal static string Error_PackageDownload_NoVersion {
get {
return ResourceManager.GetString("Error_PackageDownload_NoVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0} {1}' does not have an exact version like '[1.0.0]'. Only exact versions are allowed with PackageDownload..
/// </summary>
internal static string Error_PackageDownload_OnlyExactVersionsAreAllowed {
get {
return ResourceManager.GetString("Error_PackageDownload_OnlyExactVersionsAreAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package is not signed..
/// </summary>
internal static string Error_PackageNotSigned {
get {
return ResourceManager.GetString("Error_PackageNotSigned", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following PackageReference item(s) do not have a version specified: {0}.
/// </summary>
internal static string Error_PackageReference_NoVersion {
get {
return ResourceManager.GetString("Error_PackageReference_NoVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package content hash validation failed for {0}. The package is different than the last restore..
/// </summary>
internal static string Error_PackageValidationFailed {
get {
return ResourceManager.GetString("Error_PackageValidationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to build package. {0}.
/// </summary>
internal static string Error_PackFailed {
get {
return ResourceManager.GetString("Error_PackFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Platform version is not present for one or more target frameworks, even though they have specified a platform: {0}.
/// </summary>
internal static string Error_PlatformVersionNotPresent {
get {
return ResourceManager.GetString("Error_PlatformVersionNotPresent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find project '{0}'. Check that the project reference is valid and that the project file exists..
/// </summary>
internal static string Error_ProjectDoesNotExist {
get {
return ResourceManager.GetString("Error_ProjectDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Managing packages with project.json is deprecated. Migrate to PackageReference..
/// </summary>
internal static string Error_ProjectJson_Deprecated {
get {
return ResourceManager.GetString("Error_ProjectJson_Deprecated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The runtime.json specified in the project '{0}' could not be parsed. {1}.
/// </summary>
internal static string Error_ProjectRuntimeJsonIsUnreadable {
get {
return ResourceManager.GetString("Error_ProjectRuntimeJsonIsUnreadable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The runtime.json specified in the project '{0}' could not be found..
/// </summary>
internal static string Error_ProjectRuntimeJsonNotFound {
get {
return ResourceManager.GetString("Error_ProjectRuntimeJsonNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project {0} must have a single package reference(s)..
/// </summary>
internal static string Error_ProjectWithIncorrectDependenciesCount {
get {
return ResourceManager.GetString("Error_ProjectWithIncorrectDependenciesCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Property '{0}' should not be null or empty..
/// </summary>
internal static string Error_PropertyCannotBeNullOrEmpty {
get {
return ResourceManager.GetString("Error_PropertyCannotBeNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to add trusted repository. The package is not repository signed or countersigned..
/// </summary>
internal static string Error_RepoTrustExpectedRepoSignature {
get {
return ResourceManager.GetString("Error_RepoTrustExpectedRepoSignature", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The packages lock file is inconsistent with the project dependencies so restore can't be run in locked mode. Disable the RestoreLockedMode MSBuild property or pass an explicit --force-evaluate option to run restore to update the lock file..
/// </summary>
internal static string Error_RestoreInLockedMode {
get {
return ResourceManager.GetString("Error_RestoreInLockedMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageReference {0} will not be pruned. Consider removing this package from your dependencies, as it is likely unnecessary..
/// </summary>
internal static string Error_RestorePruningDirectPackageReference {
get {
return ResourceManager.GetString("Error_RestorePruningDirectPackageReference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A ProjectReference cannot be pruned, {0}..
/// </summary>
internal static string Error_RestorePruningProjectReference {
get {
return ResourceManager.GetString("Error_RestorePruningProjectReference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The repository service index '{0}' is not a valid HTTPS url..
/// </summary>
internal static string Error_ServiceIndexShouldBeHttps {
get {
return ResourceManager.GetString("Error_ServiceIndexShouldBeHttps", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid tools package {0} {1}. Tools packages cannot contain more than one PackageType..
/// </summary>
internal static string Error_ToolsPackageWithExtraPackageTypes {
get {
return ResourceManager.GetString("Error_ToolsPackageWithExtraPackageTypes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A trusted author cannot have owners..
/// </summary>
internal static string Error_TrustedAuthorNoOwners {
get {
return ResourceManager.GetString("Error_TrustedAuthorNoOwners", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A trusted repository with the service index '{0}' already exists..
/// </summary>
internal static string Error_TrustedRepoAlreadyExists {
get {
return ResourceManager.GetString("Error_TrustedRepoAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A trusted repository '{0}' does not exist..
/// </summary>
internal static string Error_TrustedRepositoryDoesNotExist {
get {
return ResourceManager.GetString("Error_TrustedRepositoryDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A trusted signer '{0}' already exists..
/// </summary>
internal static string Error_TrustedSignerAlreadyExists {
get {
return ResourceManager.GetString("Error_TrustedSignerAlreadyExists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find project information for '{0}'. If you are using Visual Studio, this may be because the project is unloaded or not part of the current solution so run a restore from the command-line. Otherwise, the project file may be invalid or missing targets required for restore..
/// </summary>
internal static string Error_UnableToFindProjectInfo {
get {
return ResourceManager.GetString("Error_UnableToFindProjectInfo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No build found in {0}. Use the -Build option or build the project..
/// </summary>
internal static string Error_UnableToLocateBuildOutput {
get {
return ResourceManager.GetString("Error_UnableToLocateBuildOutput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The folder '{0}' does not contain a project to restore..
/// </summary>
internal static string Error_UnableToLocateRestoreTarget {
get {
return ResourceManager.GetString("Error_UnableToLocateRestoreTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to sign package..
/// </summary>
internal static string Error_UnableToSignPackage {
get {
return ResourceManager.GetString("Error_UnableToSignPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source '{0}' does not exist or cannot be retrived..
/// </summary>
internal static string Error_UnavailableSource {
get {
return ResourceManager.GetString("Error_UnavailableSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0}' specifies an invalid build action '{1}' for file '{2}'..
/// </summary>
internal static string Error_UnknownBuildAction {
get {
return ResourceManager.GetString("Error_UnknownBuildAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The find by search type '{0}' is not recognized..
/// </summary>
internal static string Error_UnknownClientCertificatesFindBy {
get {
return ResourceManager.GetString("Error_UnknownClientCertificatesFindBy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The store location '{0}' is not recognized..
/// </summary>
internal static string Error_UnknownClientCertificatesStoreLocation {
get {
return ResourceManager.GetString("Error_UnknownClientCertificatesStoreLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The source name '{0}' is not recognized..
/// </summary>
internal static string Error_UnknownClientCertificatesStoreName {
get {
return ResourceManager.GetString("Error_UnknownClientCertificatesStoreName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot determine client certificate store type.
/// </summary>
internal static string Error_UnknownClientCertificateStoreType {
get {
return ResourceManager.GetString("Error_UnknownClientCertificateStoreType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The trust target '{0}' is unsupported..
/// </summary>
internal static string Error_UnsupportedTrustTarget {
get {
return ResourceManager.GetString("Error_UnsupportedTrustTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error occurred while getting package vulnerability data: {0}.