-
Notifications
You must be signed in to change notification settings - Fork 753
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
2676 lines (2379 loc) · 115 KB
/
Strings.Designer.cs
File metadata and controls
2676 lines (2379 loc) · 115 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.CommandLine.XPlat {
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", "17.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.CommandLine.XPlat.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 Add a NuGet source..
/// </summary>
internal static string Add_Description {
get {
return ResourceManager.GetString("Add_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adds a client certificate configuration that matches the given package source name..
/// </summary>
internal static string AddClientCertCommandDescription {
get {
return ResourceManager.GetString("AddClientCertCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to all.
/// </summary>
internal static string AddPkg_All {
get {
return ResourceManager.GetString("AddPkg_All", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adds a package reference to a project..
/// </summary>
internal static string AddPkg_Description {
get {
return ResourceManager.GetString("AddPkg_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to the dependency graph file to be used to restore preview and compatibility check..
/// </summary>
internal static string AddPkg_DgFileDescription {
get {
return ResourceManager.GetString("AddPkg_DgFileDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Frameworks for which the package reference should be added..
/// </summary>
internal static string AddPkg_FrameworksDescription {
get {
return ResourceManager.GetString("AddPkg_FrameworksDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow the command to block and require manual action for operations like authentication..
/// </summary>
internal static string AddPkg_InteractiveDescription {
get {
return ResourceManager.GetString("AddPkg_InteractiveDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not perform restore preview and compatibility check. The added package reference will be unconditional..
/// </summary>
internal static string AddPkg_NoRestoreDescription {
get {
return ResourceManager.GetString("AddPkg_NoRestoreDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Directory to restore packages in..
/// </summary>
internal static string AddPkg_PackageDirectoryDescription {
get {
return ResourceManager.GetString("AddPkg_PackageDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Id of the package to be added..
/// </summary>
internal static string AddPkg_PackageIdDescription {
get {
return ResourceManager.GetString("AddPkg_PackageIdDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allows prerelease packages to be installed..
/// </summary>
internal static string AddPkg_PackagePrerelease {
get {
return ResourceManager.GetString("AddPkg_PackagePrerelease", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version of the package to be added..
/// </summary>
internal static string AddPkg_PackageVersionDescription {
get {
return ResourceManager.GetString("AddPkg_PackageVersionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to the project file..
/// </summary>
internal static string AddPkg_ProjectPathDescription {
get {
return ResourceManager.GetString("AddPkg_ProjectPathDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies NuGet package sources to use during the restore..
/// </summary>
internal static string AddPkg_SourcesDescription {
get {
return ResourceManager.GetString("AddPkg_SourcesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to user specified.
/// </summary>
internal static string AddPkg_UserSpecified {
get {
return ResourceManager.GetString("AddPkg_UserSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a NuGet source..
/// </summary>
internal static string AddSourceCommandDescription {
get {
return ResourceManager.GetString("AddSourceCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allows pushing to HTTP sources (insecure)..
/// </summary>
internal static string AllowInsecureConnections_Description {
get {
return ResourceManager.GetString("AllowInsecureConnections_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The API key for the server..
/// </summary>
internal static string ApiKey_Description {
get {
return ResourceManager.GetString("ApiKey_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NuGet Command Line.
/// </summary>
internal static string App_FullName {
get {
return ResourceManager.GetString("App_FullName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument cannot be null or empty..
/// </summary>
internal static string ArgumentNullOrEmpty {
get {
return ResourceManager.GetString("ArgumentNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NuGet configuration CLI.
/// </summary>
internal static string Config_Description {
get {
return ResourceManager.GetString("Config_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Key '{0}' not found..
/// </summary>
internal static string ConfigCommandKeyNotFound {
get {
return ResourceManager.GetString("ConfigCommandKeyNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ALL: Get all merged NuGet configuration settings from multiple NuGet configuration files that will be applied, when invoking NuGet command from the working directory path. CONFIG_KEY: Get the effective value of the specified configuration settings of the config section..
/// </summary>
internal static string ConfigGetAllOrConfigKeyDescription {
get {
return ResourceManager.GetString("ConfigGetAllOrConfigKeyDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gets the NuGet configuration settings that will be applied..
/// </summary>
internal static string ConfigGetCommandDescription {
get {
return ResourceManager.GetString("ConfigGetCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indicate that the NuGet configuration file path will be shown beside the configuration settings..
/// </summary>
internal static string ConfigGetShowPathDescription {
get {
return ResourceManager.GetString("ConfigGetShowPathDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lists the paths to all NuGet configuration files that will be applied when invoking NuGet command in a specific directory.
/// </summary>
internal static string ConfigPathsCommandDescription {
get {
return ResourceManager.GetString("ConfigPathsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the directory to start from when listing configuration files. If not specified, the current directory is used..
/// </summary>
internal static string ConfigPathsWorkingDirectoryDescription {
get {
return ResourceManager.GetString("ConfigPathsWorkingDirectoryDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set the value of a specified NuGet configuration setting..
/// </summary>
internal static string ConfigSetCommandDescription {
get {
return ResourceManager.GetString("ConfigSetCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The key of the settings that are to be set..
/// </summary>
internal static string ConfigSetConfigKeyDescription {
get {
return ResourceManager.GetString("ConfigSetConfigKeyDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value of the settings that are to be set..
/// </summary>
internal static string ConfigSetConfigValueDescription {
get {
return ResourceManager.GetString("ConfigSetConfigValueDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removes the key-value pair from a specified NuGet configuration setting..
/// </summary>
internal static string ConfigUnsetCommandDescription {
get {
return ResourceManager.GetString("ConfigUnsetCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The key of the settings that are to be removed..
/// </summary>
internal static string ConfigUnsetConfigKeyDescription {
get {
return ResourceManager.GetString("ConfigUnsetConfigKeyDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The key "{0}" could not be found in config section, so it could not be unset..
/// </summary>
internal static string ConfigUnsetNonExistingKey {
get {
return ResourceManager.GetString("ConfigUnsetNonExistingKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} (y/N).
/// </summary>
internal static string ConsoleConfirmMessage {
get {
return ResourceManager.GetString("ConsoleConfirmMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to y.
/// </summary>
internal static string ConsoleConfirmMessageAccept {
get {
return ResourceManager.GetString("ConsoleConfirmMessageAccept", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DefaultThreadCurrentUICulture value: {0}.
/// </summary>
internal static string Debug_CurrentUICulture {
get {
return ResourceManager.GetString("Debug_CurrentUICulture", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes a package from the server..
/// </summary>
internal static string Delete_Description {
get {
return ResourceManager.GetString("Delete_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please provide arguments for package id and package version..
/// </summary>
internal static string Delete_MissingArguments {
get {
return ResourceManager.GetString("Delete_MissingArguments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Package Id and version..
/// </summary>
internal static string Delete_PackageIdAndVersion_Description {
get {
return ResourceManager.GetString("Delete_PackageIdAndVersion_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable a NuGet source..
/// </summary>
internal static string Disable_Description {
get {
return ResourceManager.GetString("Disable_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable buffering when pushing to an HTTP(S) server to decrease memory usage..
/// </summary>
internal static string DisableBuffering_Description {
get {
return ResourceManager.GetString("DisableBuffering_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable a NuGet source..
/// </summary>
internal static string DisableSourceCommandDescription {
get {
return ResourceManager.GetString("DisableSourceCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable a NuGet source..
/// </summary>
internal static string Enable_Description {
get {
return ResourceManager.GetString("Enable_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable a NuGet source..
/// </summary>
internal static string EnableSourceCommandDescription {
get {
return ResourceManager.GetString("EnableSourceCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid value provided for '{0}'. The accepted values are {1}..
/// </summary>
internal static string Err_InvalidValue {
get {
return ResourceManager.GetString("Err_InvalidValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to VersionOverride for package '{0}' should not be empty..
/// </summary>
internal static string Error_AddPkg_CentralPackageVersions_EmptyVersionOverride {
get {
return ResourceManager.GetString("Error_AddPkg_CentralPackageVersions_EmptyVersionOverride", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package reference for package '{0}' defined in incorrect location, PackageReference should be defined in project file..
/// </summary>
internal static string Error_AddPkg_CentralPackageVersions_PackageReference_WrongLocation {
get {
return ResourceManager.GetString("Error_AddPkg_CentralPackageVersions_PackageReference_WrongLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageVersion for package '{0}' defined in incorrect location, PackageVersion should be defined in Directory.Package.props..
/// </summary>
internal static string Error_AddPkg_CentralPackageVersions_PackageVersion_WrongLocation {
get {
return ResourceManager.GetString("Error_AddPkg_CentralPackageVersions_PackageVersion_WrongLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Item '{0}' for '{1}' in Imported file '{2}'..
/// </summary>
internal static string Error_AddPkgErrorStringForImportedEdit {
get {
return ResourceManager.GetString("Error_AddPkgErrorStringForImportedEdit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error while performing {0} for package '{1}'. Cannot edit items in imported files - {2}{3}.
/// </summary>
internal static string Error_AddPkgFailOnImportEdit {
get {
return ResourceManager.GetString("Error_AddPkgFailOnImportEdit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0}' is incompatible with '{1}' frameworks in project '{2}'..
/// </summary>
internal static string Error_AddPkgIncompatibleWithAllFrameworks {
get {
return ResourceManager.GetString("Error_AddPkgIncompatibleWithAllFrameworks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to add a PackageReference for '{0}'. A ProjectReference with the same name already exists and a package with the same name cannot be added to the project..
/// </summary>
internal static string Error_AddPkgProjectReference {
get {
return ResourceManager.GetString("Error_AddPkgProjectReference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find a resolved package for '{0}'. This is a tooling error. Please file an issue at https://github.com/NuGet/Home..
/// </summary>
internal static string Error_AddPkgUnresolved {
get {
return ResourceManager.GetString("Error_AddPkgUnresolved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No assets file was found for `{0}`. Please run restore before running this command..
/// </summary>
internal static string Error_AssetsFileNotFound {
get {
return ResourceManager.GetString("Error_AssetsFileNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to obtain a search resource..
/// </summary>
internal static string Error_CannotObtainSearchSource {
get {
return ResourceManager.GetString("Error_CannotObtainSearchSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}: Package {1} is implicitly added by the SDK and cannot be upgraded independently.
/// </summary>
internal static string Error_CannotUpgradeAutoReferencedPackage {
get {
return ResourceManager.GetString("Error_CannotUpgradeAutoReferencedPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The packages {0} are implicitly referenced. You do not typically need to reference them from your project or in your central package versions management file. For more information, see https://aka.ms/sdkimplicitrefs.
/// </summary>
internal static string Error_CentralPackageVersions_AutoreferencedReferencesNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageVersions_AutoreferencedReferencesNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Centrally defined floating package versions are not allowed..
/// </summary>
internal static string Error_CentralPackageVersions_FloatingVersionsAreNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageVersions_FloatingVersionsAreNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The PackageReference items {0} do not have corresponding PackageVersion..
/// </summary>
internal static string Error_CentralPackageVersions_MissingPackageVersion {
get {
return ResourceManager.GetString("Error_CentralPackageVersions_MissingPackageVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package reference {0} specifies a VersionOverride but the ability to override a centrally defined version is currently disabled..
/// </summary>
internal static string Error_CentralPackageVersions_VersionOverrideDisabled {
get {
return ResourceManager.GetString("Error_CentralPackageVersions_VersionOverrideDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Projects that use central package version management should not define the version on the PackageReference items but on the PackageVersion items: {0}.
/// </summary>
internal static string Error_CentralPackageVersions_VersionsNotAllowed {
get {
return ResourceManager.GetString("Error_CentralPackageVersions_VersionsNotAllowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is not a valid config key in config section..
/// </summary>
internal static string Error_ConfigSetInvalidKey {
get {
return ResourceManager.GetString("Error_ConfigSetInvalidKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Central Package Management configuration error: Could not find PackageVersion for package {0}.
/// </summary>
internal static string Error_CouldNotFindPackageVersionForCpmPackage {
get {
return ResourceManager.GetString("Error_CouldNotFindPackageVersionForCpmPackage", 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 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_HttpServerUsage {
get {
return ResourceManager.GetString("Error_HttpServerUsage", 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_HttpServerUsage_MultipleSources {
get {
return ResourceManager.GetString("Error_HttpServerUsage_MultipleSources", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid culture identifier in {0} environment variable. Value read is '{1}'.
/// </summary>
internal static string Error_InvalidCultureInfo {
get {
return ResourceManager.GetString("Error_InvalidCultureInfo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid value `{0}` for option {1}..
/// </summary>
internal static string Error_InvalidOptionValue {
get {
return ResourceManager.GetString("Error_InvalidOptionValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified source '{0}' is invalid. Provide a valid source..
/// </summary>
internal static string Error_InvalidSource {
get {
return ResourceManager.GetString("Error_InvalidSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid version value `{0}`..
/// </summary>
internal static string Error_InvalidVersion {
get {
return ResourceManager.GetString("Error_InvalidVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid version range '{0}'.
/// </summary>
internal static string Error_InvalidVersionRange {
get {
return ResourceManager.GetString("Error_InvalidVersionRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Missing version from {0}.
/// </summary>
internal static string Error_MissingVersion {
get {
return ResourceManager.GetString("Error_MissingVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to MsBuild was unable to open Project '{0}'..
/// </summary>
internal static string Error_MsBuildUnableToOpenProject {
get {
return ResourceManager.GetString("Error_MsBuildUnableToOpenProject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory '{0}' contains multiple project or solution files. Please specify which project or solution file to use..
/// </summary>
internal static string Error_MultipleProjectOrSolutionFilesInDirectory {
get {
return ResourceManager.GetString("Error_MultipleProjectOrSolutionFilesInDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to None or invalid DgSpec was passed to NuGet add package command..
/// </summary>
internal static string Error_NoDgSpec {
get {
return ResourceManager.GetString("Error_NoDgSpec", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The directory '{0}' does not contain any project or solution files..
/// </summary>
internal static string Error_NoProjectOrSolutionFilesInDirectory {
get {
return ResourceManager.GetString("Error_NoProjectOrSolutionFilesInDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No package sources found..
/// </summary>
internal static string Error_NoSource {
get {
return ResourceManager.GetString("Error_NoSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The project `{0}` uses package.config for NuGet packages, while the command works only with package reference projects..
/// </summary>
internal static string Error_NotPRProject {
get {
return ResourceManager.GetString("Error_NotPRProject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no versions available for the package '{0}'..
/// </summary>
internal static string Error_NoVersionsAvailable {
get {
return ResourceManager.GetString("Error_NoVersionsAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package source mapping is enabled, but no mapping for package {0} was found. See https://aka.ms/nuget/psm for more information..
/// </summary>
internal static string Error_PackageSourceMappingNotFound {
get {
return ResourceManager.GetString("Error_PackageSourceMappingNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Missing or invalid path '{0}'. Please provide a path to a project, solution file, or directory..
/// </summary>
internal static string Error_PathIsMissingOrInvalid {
get {
return ResourceManager.GetString("Error_PathIsMissingOrInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified path '{0}' does not exist..
/// </summary>
internal static string Error_PathNotFound {
get {
return ResourceManager.GetString("Error_PathNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to {0} package. Argument '{1}' not provided..
/// </summary>
internal static string Error_PkgMissingArgument {
get {
return ResourceManager.GetString("Error_PkgMissingArgument", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to {0} package. Missing or Invalid project file '{1}'..
/// </summary>
internal static string Error_PkgMissingOrInvalidProjectFile {
get {
return ResourceManager.GetString("Error_PkgMissingOrInvalidProjectFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The --prerelease and --version options are not supported in the same command..
/// </summary>
internal static string Error_PrereleaseWhenVersionSpecified {
get {
return ResourceManager.GetString("Error_PrereleaseWhenVersionSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project '{0}' does not have MSBuild property ProjectAssetsFile defined. This may indicate that this project does not support NuGet PackageReference, or that project customization has prevented the .NET SDK setting default values..
/// </summary>
internal static string Error_ProjectAssetsFilePropertyNotFound {
get {
return ResourceManager.GetString("Error_ProjectAssetsFilePropertyNotFound", 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 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 The certificate finger you're trying to add is already in the certificate fingerprint list..
/// </summary>
internal static string Error_TrustFingerPrintAlreadyExist {
get {
return ResourceManager.GetString("Error_TrustFingerPrintAlreadyExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error while adding package '{0}' to project '{1}'. The project does not support adding package references through the add package command..
/// </summary>
internal static string Error_UnsupportedProject {
get {
return ResourceManager.GetString("Error_UnsupportedProject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project '{0}' does not contain any PackageReference '{1}' to {2}..
/// </summary>
internal static string Error_UpdatePkgNoSuchPackage {
get {
return ResourceManager.GetString("Error_UpdatePkgNoSuchPackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forces the application to run using an invariant, English-based culture..
/// </summary>
internal static string ForceEnglishOutput_Description {
get {
return ResourceManager.GetString("ForceEnglishOutput_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageReference for package '{0}' version '{1}' added to file '{2}'..
/// </summary>
internal static string Info_AddPkgAdded {
get {
return ResourceManager.GetString("Info_AddPkgAdded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adding PackageReference for package '{0}' into project '{1}'..
/// </summary>
internal static string Info_AddPkgAddingReference {
get {
return ResourceManager.GetString("Info_AddPkgAddingReference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0}' is compatible with all the specified frameworks in project '{1}'..
/// </summary>
internal static string Info_AddPkgCompatibleWithAllFrameworks {
get {
return ResourceManager.GetString("Info_AddPkgCompatibleWithAllFrameworks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package '{0}' is compatible with a subset of the specified frameworks in project '{1}'..
/// </summary>
internal static string Info_AddPkgCompatibleWithSubsetFrameworks {
get {
return ResourceManager.GetString("Info_AddPkgCompatibleWithSubsetFrameworks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageReference for package '{0}' added to '{1}' and PackageVersion added to central package management file '{2}'..
/// </summary>
internal static string Info_AddPkgCPM {
get {
return ResourceManager.GetString("Info_AddPkgCPM", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PackageReference for package '{0}' version '{1}' updated in file '{2}'..
/// </summary>
internal static string Info_AddPkgUpdated {
get {
return ResourceManager.GetString("Info_AddPkgUpdated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Removing PackageReference for package '{0}' from project '{1}'..
/// </summary>
internal static string Info_RemovePkgRemovingReference {
get {
return ResourceManager.GetString("Info_RemovePkgRemovingReference", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List configured NuGet sources..
/// </summary>
internal static string List_Description {
get {
return ResourceManager.GetString("List_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lists all the client certificates in the configuration..
/// </summary>
internal static string ListClientCertCommandDescription {
get {
return ResourceManager.GetString("ListClientCertCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (A) : Auto-referenced package..
/// </summary>
internal static string ListPkg_AutoReferenceDescription {
get {
return ResourceManager.GetString("ListPkg_AutoReferenceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A path to a config file to specify sources. Works only with `--outdated`..
/// </summary>
internal static string ListPkg_ConfigDescription {
get {
return ResourceManager.GetString("ListPkg_ConfigDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displays only the packages marked deprecated by the authors..
/// </summary>
internal static string ListPkg_DeprecatedDescription {
get {
return ResourceManager.GetString("ListPkg_DeprecatedDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Alternative.
/// </summary>
internal static string ListPkg_DeprecationAlternative {
get {
return ResourceManager.GetString("ListPkg_DeprecationAlternative", resourceCulture);
}
}
/// <summary>