-
Notifications
You must be signed in to change notification settings - Fork 749
Expand file tree
/
Copy pathNuGetCommand.Designer.cs
More file actions
2223 lines (1985 loc) · 95.5 KB
/
NuGetCommand.Designer.cs
File metadata and controls
2223 lines (1985 loc) · 95.5 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 {
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 NuGetCommand {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal NuGetCommand() {
}
/// <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.NuGetCommand", typeof(NuGetCommand).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 Adds the given package to a hierarchical source. http sources are not supported. For more info, goto https://docs.nuget.org/consume/command-line-reference#add-command..
/// </summary>
internal static string AddCommandDescription {
get {
return ResourceManager.GetString("AddCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the package source, which is a folder or UNC share, to which the nupkg will be added. Http sources are not supported..
/// </summary>
internal static string AddCommandSourceDescription {
get {
return ResourceManager.GetString("AddCommandSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the path to the package to be added and the package source, which is a folder or UNC share, to which the nupkg will be added. Http sources are not supported..
/// </summary>
internal static string AddCommandUsageDescription {
get {
return ResourceManager.GetString("AddCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget add foo.nupkg -Source c:\bar\
///
///nuget add foo.nupkg -Source \\bar\packages\.
/// </summary>
internal static string AddCommandUsageExamples {
get {
return ResourceManager.GetString("AddCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <packagePath> -Source <folderBasedPackageSource> [options].
/// </summary>
internal static string AddCommandUsageSummary {
get {
return ResourceManager.GetString("AddCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to certificate file..
/// </summary>
internal static string ClientCertificatesCommandFilePathDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandFilePathDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search method to find certificate in certificate store (see docs)..
/// </summary>
internal static string ClientCertificatesCommandFindByDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandFindByDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search the certificate store for the supplied value. Used with FindValue (see docs)..
/// </summary>
internal static string ClientCertificatesCommandFindValueDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandFindValueDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip certificate validation..
/// </summary>
internal static string ClientCertificatesCommandForceDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandForceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package source name..
/// </summary>
internal static string ClientCertificatesCommandPackageSourceDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandPackageSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Password for the certificate, if needed..
/// </summary>
internal static string ClientCertificatesCommandPasswordDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandPasswordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Certificate store location (see docs)..
/// </summary>
internal static string ClientCertificatesCommandStoreLocationDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandStoreLocationDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Certificate store name (see docs)..
/// </summary>
internal static string ClientCertificatesCommandStoreNameDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandStoreNameDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enables storing portable certificate password by disabling password encryption..
/// </summary>
internal static string ClientCertificatesCommandStorePasswordInClearTextDescription {
get {
return ResourceManager.GetString("ClientCertificatesCommandStorePasswordInClearTextDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget client-certs Add -PackageSource Foo -Path .\MyCertificate.pfx
///
///nuget client-certs Add -PackageSource Contoso -Path c:\MyCertificate.pfx -Password 42
///
///nuget client-certs Add -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
///
///nuget client-certs Add -PackageSource Contoso -StoreLocation LocalMachine -StoreName My -FindBy Thumbprint -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
///
///nuget client-certs Update -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e [rest of string was truncated]";.
/// </summary>
internal static string ClientCertificatesCommandUsageExamples {
get {
return ResourceManager.GetString("ClientCertificatesCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <List|Add|Update|Remove> [options].
/// </summary>
internal static string ClientCertificatesCommandUsageSummary {
get {
return ResourceManager.GetString("ClientCertificatesCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Provides the ability to manage list of client certificates located in NuGet.config files.
/// </summary>
internal static string ClientCertificatesDescription {
get {
return ResourceManager.GetString("ClientCertificatesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The API key for the server. If not set, the NUGET_API_KEY environment variable is read..
/// </summary>
internal static string CommandApiKey {
get {
return ResourceManager.GetString("CommandApiKey", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download directly without populating any caches with metadata or binaries..
/// </summary>
internal static string CommandDirectDownload {
get {
return ResourceManager.GetString("CommandDirectDownload", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable parallel processing of packages for this command..
/// </summary>
internal static string CommandDisableParallelProcessing {
get {
return ResourceManager.GetString("CommandDisableParallelProcessing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A list of package sources to use as fallbacks for this command..
/// </summary>
internal static string CommandFallbackSourceDescription {
get {
return ResourceManager.GetString("CommandFallbackSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid value provided for '{0}'. For a list of accepted values, please visit https://docs.nuget.org/docs/reference/command-line-reference.
/// </summary>
internal static string CommandInvalidArgumentException {
get {
return ResourceManager.GetString("CommandInvalidArgumentException", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the path of MSBuild to be used with this command. This command will takes precedence over MSbuildVersion, nuget will always pick MSbuild from this specified path..
/// </summary>
internal static string CommandMSBuildPath {
get {
return ResourceManager.GetString("CommandMSBuildPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16.0. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild..
/// </summary>
internal static string CommandMSBuildVersion {
get {
return ResourceManager.GetString("CommandMSBuildVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable using the machine cache as the first package source..
/// </summary>
internal static string CommandNoCache {
get {
return ResourceManager.GetString("CommandNoCache", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable the use of the HTTP cache and contact all configured package sources for live information..
/// </summary>
internal static string CommandNoHttpCache {
get {
return ResourceManager.GetString("CommandNoHttpCache", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Does not append "api/v2/packages" to the source URL..
/// </summary>
internal static string CommandNoServiceEndpointDescription {
get {
return ResourceManager.GetString("CommandNoServiceEndpointDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies types of files to save after package installation: nuspec, nupkg, nuspec;nupkg..
/// </summary>
internal static string CommandPackageSaveMode {
get {
return ResourceManager.GetString("CommandPackageSaveMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A list of packages sources to use for this command..
/// </summary>
internal static string CommandSourceDescription {
get {
return ResourceManager.GetString("CommandSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Returns the config value as a path. This option is ignored when -Set is specified..
/// </summary>
internal static string ConfigCommandAsPathDesc {
get {
return ResourceManager.GetString("ConfigCommandAsPathDesc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gets or sets NuGet config values..
/// </summary>
internal static string ConfigCommandDesc {
get {
return ResourceManager.GetString("ConfigCommandDesc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget config -Set HTTP_PROXY=http://127.0.0.1 -Set HTTP_PROXY.USER=domain\user
///nuget config HTTP_PROXY.
/// </summary>
internal static string ConfigCommandExamples {
get {
return ResourceManager.GetString("ConfigCommandExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to One on more key-value pairs to be set in config..
/// </summary>
internal static string ConfigCommandSetDesc {
get {
return ResourceManager.GetString("ConfigCommandSetDesc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <-Set name=value | name>.
/// </summary>
internal static string ConfigCommandSummary {
get {
return ResourceManager.GetString("ConfigCommandSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NuGet's default configuration is obtained by loading %AppData%\NuGet\NuGet.config, then loading any nuget.config or .nuget\nuget.config starting from root of drive and ending in current directory..
/// </summary>
internal static string DefaultConfigDescription {
get {
return ResourceManager.GetString("DefaultConfigDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes a package from the server..
/// </summary>
internal static string DeleteCommandDescription {
get {
return ResourceManager.GetString("DeleteCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not prompt when deleting..
/// </summary>
internal static string DeleteCommandNoPromptDescription {
get {
return ResourceManager.GetString("DeleteCommandNoPromptDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package source (URL, UNC/folder path or package source name) to delete from. Defaults to DefaultPushSource if specified in NuGet.Config..
/// </summary>
internal static string DeleteCommandSourceDescription {
get {
return ResourceManager.GetString("DeleteCommandSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify the Id and version of the package to delete from the server..
/// </summary>
internal static string DeleteCommandUsageDescription {
get {
return ResourceManager.GetString("DeleteCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget delete MyPackage 1.0
///
///nuget delete MyPackage 1.0 -NoPrompt.
/// </summary>
internal static string DeleteCommandUsageExamples {
get {
return ResourceManager.GetString("DeleteCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <package Id> <package version> [API Key] [options].
/// </summary>
internal static string DeleteCommandUsageSummary {
get {
return ResourceManager.GetString("DeleteCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display NuGet.exe's End User Liscence Agreement (EULA).
/// </summary>
internal static string EulaDescription {
get {
return ResourceManager.GetString("EulaDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If provided, a package added to offline feed is also expanded..
/// </summary>
internal static string ExpandDescription {
get {
return ResourceManager.GetString("ExpandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forces all dependencies to be resolved even if the last restore was successful. This is equivalent to deleting project.assets.json. (Does not apply to packages.config).
/// </summary>
internal static string ForceRestoreCommand {
get {
return ResourceManager.GetString("ForceRestoreCommand", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to alias: {0}.
/// </summary>
internal static string HelpCommand_Alias {
get {
return ResourceManager.GetString("HelpCommand_Alias", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ({0}).
/// </summary>
internal static string HelpCommand_AltText {
get {
return ResourceManager.GetString("HelpCommand_AltText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Available commands:.
/// </summary>
internal static string HelpCommand_AvailableCommands {
get {
return ResourceManager.GetString("HelpCommand_AvailableCommands", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to examples:.
/// </summary>
internal static string HelpCommand_Examples {
get {
return ResourceManager.GetString("HelpCommand_Examples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to options:.
/// </summary>
internal static string HelpCommand_Options {
get {
return ResourceManager.GetString("HelpCommand_Options", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type '{0} help <command>' for help on a specific command..
/// </summary>
internal static string HelpCommand_Suggestion {
get {
return ResourceManager.GetString("HelpCommand_Suggestion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} Command.
/// </summary>
internal static string HelpCommand_Title {
get {
return ResourceManager.GetString("HelpCommand_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to usage: {0} <command> [args] [options].
/// </summary>
internal static string HelpCommand_Usage {
get {
return ResourceManager.GetString("HelpCommand_Usage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to usage: {0} {1} {2}.
/// </summary>
internal static string HelpCommand_UsageDetail {
get {
return ResourceManager.GetString("HelpCommand_UsageDetail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Print detailed help for all available commands..
/// </summary>
internal static string HelpCommandAll {
get {
return ResourceManager.GetString("HelpCommandAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displays general help information and help information about other commands..
/// </summary>
internal static string HelpCommandDescription {
get {
return ResourceManager.GetString("HelpCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Print detailed all help in markdown format..
/// </summary>
internal static string HelpCommandMarkdown {
get {
return ResourceManager.GetString("HelpCommandMarkdown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pass a command name to display help information for that command..
/// </summary>
internal static string HelpCommandUsageDescription {
get {
return ResourceManager.GetString("HelpCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget help
///
///nuget help push
///
///nuget ?
///
///nuget push -?.
/// </summary>
internal static string HelpCommandUsageExamples {
get {
return ResourceManager.GetString("HelpCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to [command].
/// </summary>
internal static string HelpCommandUsageSummary {
get {
return ResourceManager.GetString("HelpCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adds all the packages from the <srcPackageSourcePath> to the hierarchical <destPackageSourcePath>. http feeds are not supported. For more info, goto https://docs.nuget.org/consume/command-line-reference#init-command..
/// </summary>
internal static string InitCommandDescription {
get {
return ResourceManager.GetString("InitCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify the path to source package source to be copied from and the path to the destination package source to be copied to..
/// </summary>
internal static string InitCommandUsageDescription {
get {
return ResourceManager.GetString("InitCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget init c:\foo c:\bar
///
///nuget init \\foo\packages \\bar\packages.
/// </summary>
internal static string InitCommandUsageExamples {
get {
return ResourceManager.GetString("InitCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <srcPackageSourcePath> <destPackageSourcePath> [options].
/// </summary>
internal static string InitCommandUsageSummary {
get {
return ResourceManager.GetString("InitCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Overrides the default dependency resolution behavior..
/// </summary>
internal static string InstallCommandDependencyVersion {
get {
return ResourceManager.GetString("InstallCommandDependencyVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Installs a package using the specified sources. If no sources are specified, all sources defined in the NuGet configuration file are used. If the configuration file specifies no sources, uses the default NuGet feed..
/// </summary>
internal static string InstallCommandDescription {
get {
return ResourceManager.GetString("InstallCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If set, the destination folder will contain only the package name, not the version number.
/// </summary>
internal static string InstallCommandExcludeVersionDescription {
get {
return ResourceManager.GetString("InstallCommandExcludeVersionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Target framework used for selecting dependencies. Defaults to 'Any' if not specified..
/// </summary>
internal static string InstallCommandFrameworkDescription {
get {
return ResourceManager.GetString("InstallCommandFrameworkDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specifies the directory in which packages will be installed. If none specified, uses the current directory..
/// </summary>
internal static string InstallCommandOutputDirDescription {
get {
return ResourceManager.GetString("InstallCommandOutputDirDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allows prerelease packages to be installed. This flag is not required when restoring packages by installing from packages.config..
/// </summary>
internal static string InstallCommandPrerelease {
get {
return ResourceManager.GetString("InstallCommandPrerelease", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checks if package restore consent is granted before installing a package..
/// </summary>
internal static string InstallCommandRequireConsent {
get {
return ResourceManager.GetString("InstallCommandRequireConsent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Solution root for package restore..
/// </summary>
internal static string InstallCommandSolutionDirectory {
get {
return ResourceManager.GetString("InstallCommandSolutionDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify the id and optionally the version of the package to install. If a path to a packages.config file is used instead of an id, all the packages it contains are installed..
/// </summary>
internal static string InstallCommandUsageDescription {
get {
return ResourceManager.GetString("InstallCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget install elmah
///
///nuget install packages.config
///
///nuget install ninject -o c:\foo.
/// </summary>
internal static string InstallCommandUsageExamples {
get {
return ResourceManager.GetString("InstallCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to packageId|pathToPackagesConfig [options].
/// </summary>
internal static string InstallCommandUsageSummary {
get {
return ResourceManager.GetString("InstallCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The version of the package to install..
/// </summary>
internal static string InstallCommandVersionDescription {
get {
return ResourceManager.GetString("InstallCommandVersionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List all versions of a package. By default, only the latest package version is displayed..
/// </summary>
internal static string ListCommandAllVersionsDescription {
get {
return ResourceManager.GetString("ListCommandAllVersionsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displays a list of packages from a given source. If no sources are specified, all sources defined in %AppData%\NuGet\NuGet.config are used. If NuGet.config specifies no sources, uses the default NuGet feed..
/// </summary>
internal static string ListCommandDescription {
get {
return ResourceManager.GetString("ListCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow unlisted packages to be shown..
/// </summary>
internal static string ListCommandIncludeDelisted {
get {
return ResourceManager.GetString("ListCommandIncludeDelisted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow prerelease packages to be shown..
/// </summary>
internal static string ListCommandPrerelease {
get {
return ResourceManager.GetString("ListCommandPrerelease", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A list of packages sources to search..
/// </summary>
internal static string ListCommandSourceDescription {
get {
return ResourceManager.GetString("ListCommandSourceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify optional search terms..
/// </summary>
internal static string ListCommandUsageDescription {
get {
return ResourceManager.GetString("ListCommandUsageDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget list
///
///nuget list -verbose -allversions.
/// </summary>
internal static string ListCommandUsageExamples {
get {
return ResourceManager.GetString("ListCommandUsageExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to [search terms] [options].
/// </summary>
internal static string ListCommandUsageSummary {
get {
return ResourceManager.GetString("ListCommandUsageSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displays a detailed list of information for each package..
/// </summary>
internal static string ListCommandVerboseListDescription {
get {
return ResourceManager.GetString("ListCommandVerboseListDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear the selected local resources or cache location(s)..
/// </summary>
internal static string LocalsCommandClearDescription {
get {
return ResourceManager.GetString("LocalsCommandClearDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clears or lists local NuGet resources such as http requests cache, temp cache or machine-wide global packages folder..
/// </summary>
internal static string LocalsCommandDescription {
get {
return ResourceManager.GetString("LocalsCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to nuget locals all -clear
///
///nuget locals http-cache -clear
///
///nuget locals temp -list
///
///nuget locals global-packages -list.
/// </summary>
internal static string LocalsCommandExamples {
get {
return ResourceManager.GetString("LocalsCommandExamples", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List the selected local resources or cache location(s)..
/// </summary>
internal static string LocalsCommandListDescription {
get {
return ResourceManager.GetString("LocalsCommandListDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to <all | http-cache | global-packages | temp | plugins-cache> [-clear | -list].
/// </summary>
internal static string LocalsCommandSummary {
get {
return ResourceManager.GetString("LocalsCommandSummary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NoCache is deprecated and has been renamed to NoHttpCache. Please use NoHttpCache instead..
/// </summary>
internal static string Log_RestoreNoCacheInformation {
get {
return ResourceManager.GetString("Log_RestoreNoCacheInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The NuGet configuration file. If specified, only the settings from this file will be used. If not specified, the hierarchy of configuration files from the current directory will be used. To learn more about NuGet configuration go to https://docs.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior..
/// </summary>
internal static string Option_ConfigFile {
get {
return ResourceManager.GetString("Option_ConfigFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forces the application to run using an invariant, English-based culture..
/// </summary>
internal static string Option_ForceEnglishOutput {
get {
return ResourceManager.GetString("Option_ForceEnglishOutput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show command help and usage information..
/// </summary>
internal static string Option_Help {
get {
return ResourceManager.GetString("Option_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not prompt for user input or confirmations..
/// </summary>
internal static string Option_NonInteractive {
get {
return ResourceManager.GetString("Option_NonInteractive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display this amount of details in the output: normal, quiet, detailed..
/// </summary>
internal static string Option_Verbosity {
get {
return ResourceManager.GetString("Option_Verbosity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The base path of the files defined in the nuspec file..
/// </summary>
internal static string PackageCommandBasePathDescription {
get {
return ResourceManager.GetString("PackageCommandBasePathDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Determines if the project should be built before building the package..
/// </summary>
internal static string PackageCommandBuildDescription {
get {
return ResourceManager.GetString("PackageCommandBuildDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify the configuration file for the pack command..
/// </summary>
internal static string PackageCommandConfigFile {
get {
return ResourceManager.GetString("PackageCommandConfigFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creates a NuGet package based on the specified nuspec or project file..
/// </summary>
internal static string PackageCommandDescription {
get {
return ResourceManager.GetString("PackageCommandDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify if the command should create a deterministic package. Multiple invocations of the pack command will create the exact same package..
/// </summary>
internal static string PackageCommandDeterministic {
get {
return ResourceManager.GetString("PackageCommandDeterministic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Specify the timestamps this command should use when creating a deterministic package. Multiple invocations of the pack command will create the exact same package..
/// </summary>
internal static string PackageCommandDeterministicTimestamp {
get {