-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetCommands.cs
6644 lines (6348 loc) · 335 KB
/
DotNetCommands.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ReSharper disable UnusedMember.Global
// ReSharper disable InconsistentNaming
namespace HostApi;
using Internal.DotNet;
using Internal;
/// <summary>
/// Runs a dotnet application.
/// <p>
/// You specify the path to an application .dll file to run the application. To run the application means to find and execute the entry point, which in the case of console apps is the Main method. For example, dotnet myapp.dll runs the myapp application.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet">.NET CLI command</a><br/>
/// <example>
///<code>
/// // Adds the namespace "HostApi" to use .NET build API
/// using HostApi;
///
/// new DotNet()
/// .WithPathToApplication(Path.Combine(path, "MyApp.dll"))
/// .Run().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="AdditionalProbingPaths">Paths containing probing policy and assemblies to probe.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="PathToApplication">Specifies the path to an application .dll file to run the application. To run the application means to find and execute the entry point, which in the case of console apps is the Main method. For example, dotnet myapp. dll runs the myapp application.</param>
/// <param name="AdditionalDeps">Path to an additional .deps.json file. A deps.json file contains a list of dependencies, compilation dependencies, and version information used to address assembly conflicts.</param>
/// <param name="FxVersion">Version of the .NET runtime to use to run the application.</param>
/// <param name="RollForward">Controls how roll forward is applied to the app. The SETTING can be one of the following values. If not specified, <see cref="HostApi.DotNetRollForward.Minor"/> is the default.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="Info">Prints out detailed information about a .NET installation and the machine environment, such as the current operating system, and commit SHA of the .NET version.</param>
/// <param name="Version">Prints out the version of the .NET SDK used by dotnet commands, which may be affected by a global.json file.</param>
/// <param name="ListRuntimes">Prints out a list of the installed .NET runtimes. An x86 version of the SDK lists only x86 runtimes, and an x64 version of the SDK lists only x64 runtimes.</param>
/// <param name="ListSdks">Prints out a list of the installed .NET SDKs.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNet(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> AdditionalProbingPaths,
string PathToApplication = "",
string AdditionalDeps = "",
string FxVersion = "",
DotNetRollForward? RollForward = null,
bool? Diagnostics = null,
bool? Info = null,
bool? Version = null,
bool? ListRuntimes = null,
bool? ListSdks = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNet(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNet()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddNotEmptyArgs(PathToApplication.ToArg())
.AddArgs(AdditionalProbingPaths.ToArgs("--additionalprobingpath", ""))
.AddArgs(AdditionalDeps.ToArgs("--additional-deps", ""))
.AddArgs(FxVersion.ToArgs("--fx-version", ""))
.AddArgs(RollForward.ToArgs("--roll-forward", ""))
.AddBooleanArgs(
("--diagnostics", Diagnostics),
("--info", Info),
("--version", Version),
("--list-runtimes", ListRuntimes),
("--list-sdks", ListSdks)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Runs a dotnet application.", ShortName, PathToApplication.ToArg());
}
/// <summary>
/// Executes a dotnet application.
/// <p>
/// You specify the path to an application .dll file to run the application. To run the application means to find and execute the entry point, which in the case of console apps is the Main method. For example, dotnet myapp.dll runs the myapp application.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
/// new DotNetExec()
/// .WithPathToApplication(Path.Combine(path, "MyApp.dll"))
/// .Run().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="AdditionalProbingPaths">Paths containing probing policy and assemblies to probe.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="PathToApplication">Specifies the path to an application .dll file to run the application. To run the application means to find and execute the entry point, which in the case of console apps is the Main method. For example, dotnet myapp. dll runs the myapp application.</param>
/// <param name="DepsFile">Path to a deps.json file. A deps.json file is a configuration file that contains information about dependencies necessary to run the application. This file is generated by the .NET SDK.</param>
/// <param name="AdditionalDeps">Path to an additional .deps.json file. A deps.json file contains a list of dependencies, compilation dependencies, and version information used to address assembly conflicts.</param>
/// <param name="FxVersion">Version of the .NET runtime to use to run the application.</param>
/// <param name="RollForward">Controls how roll forward is applied to the app. The SETTING can be one of the following values. If not specified, <see cref="HostApi.DotNetRollForward.Minor"/> is the default.</param>
/// <param name="RuntimeConfig">Path to a runtimeconfig.json file. A runtimeconfig.json file contains run-time settings and is typically named <applicationname>.runtimeconfig.json.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetExec(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> AdditionalProbingPaths,
string PathToApplication = "",
string DepsFile = "",
string AdditionalDeps = "",
string FxVersion = "",
DotNetRollForward? RollForward = null,
string RuntimeConfig = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetExec(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetExec()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("exec")
.AddNotEmptyArgs(PathToApplication.ToArg())
.AddArgs(AdditionalProbingPaths.ToArgs("--additionalprobingpath", ""))
.AddArgs(DepsFile.ToArgs("--depsfile", ""))
.AddArgs(AdditionalDeps.ToArgs("--additional-deps", ""))
.AddArgs(FxVersion.ToArgs("--fx-version", ""))
.AddArgs(RollForward.ToArgs("--roll-forward", ""))
.AddArgs(RuntimeConfig.ToArgs("--runtimeconfig", ""))
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Executes a dotnet application.", ShortName, "exec", PathToApplication.ToArg());
}
/// <summary>
/// Adds or updates a package reference in a project file.
/// <p>
/// This command provides a convenient option to add or update a package reference in a project file. When you run the command, there's a compatibility check to ensure the package is compatible with the frameworks in the project. If the check passes and the package isn't referenced in the project file, a <PackageReference> element is added to the project file. If the check passes and the package is already referenced in the project file, the <PackageReference> element is updated to the latest compatible version. After the project file is updated, dotnet restore is run.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-add-package">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// var result = new DotNetAddPackage()
/// .WithWorkingDirectory("MyLib")
/// .WithPackage("Pure.DI")
/// .Run().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="Sources">The URI of the NuGet package source to use during this operation.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Package">The package reference to add.</param>
/// <param name="Framework">Adds a package reference only when targeting a specific framework.</param>
/// <param name="NoRestore">Doesn't execute an implicit restore when running the command.</param>
/// <param name="PackageDirectory">The directory where to restore the packages. The default package restore location is %userprofile%\.nuget\packages on Windows and ~/.nuget/packages on macOS and Linux.</param>
/// <param name="Prerelease">Allows prerelease packages to be installed. Available since .NET Core 5 SDK.</param>
/// <param name="Version">Version of the package</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetAddPackage(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> Sources,
string Project = "",
string Package = "",
string Framework = "",
bool? NoRestore = null,
string PackageDirectory = "",
bool? Prerelease = null,
string Version = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetAddPackage(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetAddPackage()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("add")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("package")
.AddNotEmptyArgs(Package.ToArg())
.AddArgs(Sources.ToArgs("--source", ""))
.AddArgs(Framework.ToArgs("--framework", ""))
.AddArgs(PackageDirectory.ToArgs("--package-directory", ""))
.AddArgs(Version.ToArgs("--version", ""))
.AddBooleanArgs(
("--no-restore", NoRestore),
("--prerelease", Prerelease),
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Adds or updates a package reference in a project file.", ShortName, "add", Project.ToArg(), "package", Package.ToArg());
}
/// <summary>
/// Lists the package references for a project or solution.
/// <p>
/// This command provides a convenient option to list all NuGet package references for a specific project or a solution. You first need to build the project in order to have the assets needed for this command to process.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-list-package">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// new DotNetAddPackage()
/// .WithWorkingDirectory("MyLib")
/// .WithPackage("Pure.DI")
/// .Run().EnsureSuccess();
///
/// var lines = new List<string>();
/// new DotNetListPackage()
/// .WithProject(Path.Combine("MyLib", "MyLib.csproj"))
/// .WithVerbosity(DotNetVerbosity.Minimal)
/// .Run(output => lines.Add(output.Line));
///
/// lines.Any(i => i.Contains("Pure.DI")).ShouldBeTrue();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="Frameworks">Displays only the packages applicable for the specified target framework.</param>
/// <param name="Sources">The URI of the NuGet package source to use during this operation.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Config">The NuGet sources to use when searching for newer packages. Requires the --outdated option.</param>
/// <param name="Deprecated">Displays packages that have been deprecated.</param>
/// <param name="HighestMinor">Considers only the packages with a matching major version number when searching for newer packages. Requires the --outdated or --deprecated option.</param>
/// <param name="HighestPatch">Considers only the packages with a matching major and minor version numbers when searching for newer packages. Requires the --outdated or --deprecated option.</param>
/// <param name="IncludePrerelease">Considers packages with prerelease versions when searching for newer packages. Requires the --outdated or --deprecated option.</param>
/// <param name="IncludeTransitive">Lists transitive packages, in addition to the top-level packages. When specifying this option, you get a list of packages that the top-level packages depend on.</param>
/// <param name="Outdated">Lists packages that have newer versions available.</param>
/// <param name="Verbosity">Sets the verbosity level of the command. Allowed values are <see cref="DotNetVerbosity.Quiet"/>, <see cref="DotNetVerbosity.Minimal"/>, <see cref="DotNetVerbosity.Normal"/>, <see cref="DotNetVerbosity.Detailed"/>, and <see cref="DotNetVerbosity.Diagnostic"/>. The default is <see cref="DotNetVerbosity.Minimal"/>. For more information, see <see cref="DotNetVerbosity"/>.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetListPackage(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> Frameworks,
IEnumerable<string> Sources,
string Project = "",
string Config = "",
bool? Deprecated = null,
bool? HighestMinor = null,
bool? HighestPatch = null,
bool? IncludePrerelease = null,
bool? IncludeTransitive = null,
bool? Outdated = null,
DotNetVerbosity? Verbosity = null,
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetListPackage(params string[] args)
: this(args, [], [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetListPackage()
: this([], [], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("list")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("package")
.AddArgs(Frameworks.ToArgs("--framework", ""))
.AddArgs(Sources.ToArgs("--source", ""))
.AddArgs(Config.ToArgs("--config", ""))
.AddArgs(Verbosity.ToArgs("--verbosity", ""))
.AddBooleanArgs(
("--deprecated", Deprecated),
("--highest-minor", HighestMinor),
("--highest-patch", HighestPatch),
("--include-prerelease", IncludePrerelease),
("--include-transitive", IncludeTransitive),
("--outdated", Outdated),
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Lists the package references for a project or solution.", ShortName, "list", Project.ToArg(), "package");
}
/// <summary>
/// Removes package reference from a project file.
/// <p>
/// This command provides a convenient option to remove a NuGet package reference from a project.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-remove-package">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// new DotNetAddPackage()
/// .WithWorkingDirectory("MyLib")
/// .WithPackage("Pure.DI")
/// .Run().EnsureSuccess();
///
/// new DotNetRemovePackage()
/// .WithWorkingDirectory("MyLib")
/// .WithPackage("Pure.DI")
/// .Run().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Package">The package reference to add.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetRemovePackage(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
string Project = "",
string Package = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetRemovePackage(params string[] args)
: this(args, [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetRemovePackage()
: this([], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("remove")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("package")
.AddNotEmptyArgs(Package.ToArg())
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Removes package reference from a project file.", ShortName, "remove", Project.ToArg(), "package", Package.ToArg());
}
/// <summary>
/// Adds project-to-project (P2P) references.
/// <p>
/// This command provides a convenient option to add project references to a project. After running the command, the <ProjectReference> elements are added to the project file.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-add-reference">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// var result = new DotNetAddReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .WithReferences(Path.Combine("MyLib", "MyLib.csproj"))
/// .Run().EnsureSuccess();
///
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="References">Project-to-project (P2P) references to add. Specify one or more projects. Glob patterns are supported on Unix/Linux-based systems.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Framework">Adds project references only when targeting a specific framework using the TFM format.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetAddReference(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> References,
string Project = "",
string Framework = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetAddReference(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetAddReference()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("add")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("reference")
.AddNotEmptyArgs(References.ToArray())
.AddArgs(Framework.ToArgs("--framework", ""))
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Adds project-to-project (P2P) references.", ShortName, new [] {"add", Project.ToArg(), "reference"}.Concat(References).ToArray());
}
/// <summary>
/// Lists project-to-project references.
/// <p>
/// This command provides a convenient option to list project references for a given project.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-list-reference">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// new DotNetAddReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .WithReferences(Path.Combine("MyLib", "MyLib.csproj"))
/// .Run().EnsureSuccess();
///
/// var lines = new List<string>();
/// new DotNetListReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .Run(output => lines.Add(output.Line));
///
/// lines.Any(i => i.Contains("MyLib.csproj")).ShouldBeTrue();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetListReference(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
string Project = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetListReference(params string[] args)
: this(args, [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetListReference()
: this([], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("list")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("reference")
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Lists project-to-project references.", ShortName, "list", Project.ToArg(), "reference");
}
/// <summary>
/// Removes project-to-project (P2P) references.
/// <p>
/// This command provides a convenient option to remove project references from a project.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-remove-reference">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// new DotNetAddReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .WithReferences(Path.Combine("MyLib", "MyLib.csproj"))
/// .Run().EnsureSuccess();
///
/// new DotNetRemoveReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .WithReferences(Path.Combine("MyLib", "MyLib.csproj"))
/// .Run().EnsureSuccess();
///
/// var lines = new List<string>();
/// new DotNetListReference()
/// .WithProject(Path.Combine("MyTests", "MyTests.csproj"))
/// .Run(output => lines.Add(output.Line));
///
/// lines.Any(i => i.Contains("MyLib.csproj")).ShouldBeFalse();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="References">Project-to-project (P2P) references to remove. You can specify one or multiple projects. Glob patterns are supported on Unix/Linux based terminals.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Framework">Removes the reference only when targeting a specific framework using the TFM format.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetRemoveReference(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<string> References,
string Project = "",
string Framework = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetRemoveReference(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetRemoveReference()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("remove")
.AddNotEmptyArgs(Project.ToArg())
.AddArgs("reference")
.AddNotEmptyArgs(References.ToArray())
.AddArgs(Framework.ToArgs("--framework", ""))
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Removes project-to-project (P2P) references.", ShortName, new [] {"remove", Project.ToArg(), "reference"}.Concat(References).ToArray());
}
/// <summary>
/// Builds a project and all of its dependencies.
/// <p>
/// This command builds the project and its dependencies into a set of binaries. The binaries include the project's code in Intermediate Language (IL) files with a .dll extension. For executable projects targeting versions earlier than .NET Core 3.0, library dependencies from NuGet are typically NOT copied to the output folder. They're resolved from the NuGet global packages folder at run time. With that in mind, the product of dotnet build isn't ready to be transferred to another machine to run. To create a version of the application that can be deployed, you need to publish it (for example, with the dotnet publish command).
/// </p>
/// <p>
/// For executable projects targeting .NET Core 3.0 and later, library dependencies are copied to the output folder. This means that if there isn't any other publish-specific logic (such as Web projects have), the build output should be deployable.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-build">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// var messages = new List<BuildMessage>();
/// var result = new DotNetBuild()
/// .WithWorkingDirectory("MyTests")
/// .Build(message => messages.Add(message)).EnsureSuccess();
///
/// result.Errors.Any(message => message.State == BuildMessageState.StdError).ShouldBeFalse(result.ToString());
/// result.ExitCode.ShouldBe(0, result.ToString());
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="Props">MSBuild options for setting properties.</param>
/// <param name="Sources">The URI of the NuGet package source to use during this operation.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="Arch">Specifies the target architecture. This is a shorthand syntax for setting the Runtime Identifier (RID), where the provided value is combined with the default RID. For example, on a win-x64 machine, specifying --arch x86 sets the RID to win-x86. If you use this option, don't use the -r|--runtime option. Available since .NET 6 Preview 7.</param>
/// <param name="ArtifactsPath">All build output files from the executed command will go in subfolders under the specified path, separated by project.</param>
/// <param name="Configuration">Defines the build configuration. The default for most projects is Debug, but you can override the build configuration settings in your project.</param>
/// <param name="DisableBuildServers">Forces the command to ignore any persistent build servers. This option provides a consistent way to disable all use of build caching, which forces a build from scratch. A build that doesn't rely on caches is useful when the caches might be corrupted or incorrect for some reason. Available since .NET 7 SDK.</param>
/// <param name="Framework">Builds and runs the app using the specified framework. The framework must be specified in the project file.</param>
/// <param name="Force">Forces all dependencies to be resolved even if the last restore was successful. Specifying this flag is the same as deleting the project.assets.json file.</param>
/// <param name="NoDependencies">When restoring a project with project-to-project (P2P) references, restores the root project and not the references.</param>
/// <param name="NoIncremental">Marks the build as unsafe for incremental build. This flag turns off incremental compilation and forces a clean rebuild of the project's dependency graph.</param>
/// <param name="NoRestore">Doesn't execute an implicit restore when running the command.</param>
/// <param name="NoLogo">Doesn't display the startup banner or the copyright message.</param>
/// <param name="NoSelfContained">Publishes the application as a framework dependent application. A compatible .NET runtime must be installed on the target machine to run the application. Available since .NET 6 SDK.</param>
/// <param name="Output">Directory in which to place the built binaries. If not specified, the default path is ./bin/<configuration>/<framework>/. For projects with multiple target frameworks (via the TargetFrameworks property), you also need to define --framework when you specify this option.</param>
/// <param name="OS">Specifies the target operating system (OS). This is a shorthand syntax for setting the Runtime Identifier (RID), where the provided value is combined with the default RID. For example, on a win-x64 machine, specifying --os linux sets the RID to linux-x64. If you use this option, don't use the -r|--runtime option. Available since .NET 6.</param>
/// <param name="Runtime">Specifies the target runtime to restore packages for. For a list of Runtime Identifiers (RIDs), see the RID catalog. -r short option available since .NET Core 3.0 SDK.</param>
/// <param name="SelfContained">Publishes the .NET runtime with the application so the runtime doesn't need to be installed on the target machine. The default is true if a runtime identifier is specified. Available since .NET 6.</param>
/// <param name="TerminalLogger">Specifies whether the terminal logger should be used for the build output.</param>
/// <param name="Verbosity">Sets the verbosity level of the command. Allowed values are <see cref="DotNetVerbosity.Quiet"/>, <see cref="DotNetVerbosity.Minimal"/>, <see cref="DotNetVerbosity.Normal"/>, <see cref="DotNetVerbosity.Detailed"/>, and <see cref="DotNetVerbosity.Diagnostic"/>. The default is <see cref="DotNetVerbosity.Minimal"/>. For more information, see <see cref="DotNetVerbosity"/>.</param>
/// <param name="UseCurrentRuntime">Sets the RuntimeIdentifier to a platform portable RuntimeIdentifier based on the one of your machine. This happens implicitly with properties that require a RuntimeIdentifier, such as SelfContained, PublishAot, PublishSelfContained, PublishSingleFile, and PublishReadyToRun. If the property is set to false, that implicit resolution will no longer occur.</param>
/// <param name="VersionSuffix">Sets the value of the $(VersionSuffix) property to use when building the project. This only works if the $(Version) property isn't set. Then, $(Version) is set to the $(VersionPrefix) combined with the $(VersionSuffix), separated by a dash.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetBuild(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<(string name, string value)> Props,
IEnumerable<string> Sources,
string Project = "",
string Arch = "",
string ArtifactsPath = "",
string Configuration = "",
bool? DisableBuildServers = null,
string Framework = "",
bool? Force = null,
bool? NoDependencies = null,
bool? NoIncremental = null,
bool? NoRestore = null,
bool? NoLogo = null,
bool? NoSelfContained = null,
string Output = "",
string OS = "",
string Runtime = "",
bool? SelfContained = null,
DotNetTerminalLogger? TerminalLogger = null,
DotNetVerbosity? Verbosity = null,
bool? UseCurrentRuntime = null,
string VersionSuffix = "",
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetBuild(params string[] args)
: this(args, [], [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetBuild()
: this([], [], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("build")
.AddNotEmptyArgs(Project.ToArg())
.AddMSBuildLoggers(host, Verbosity)
.AddArgs(Sources.ToArgs("--source", ""))
.AddArgs(Arch.ToArgs("--arch", ""))
.AddArgs(ArtifactsPath.ToArgs("--artifacts-path", ""))
.AddArgs(Configuration.ToArgs("--configuration", ""))
.AddArgs(Framework.ToArgs("--framework", ""))
.AddArgs(Output.ToArgs("--output", ""))
.AddArgs(OS.ToArgs("--os", ""))
.AddArgs(Runtime.ToArgs("--runtime", ""))
.AddArgs(TerminalLogger.ToArgs("--tl", ":"))
.AddArgs(Verbosity.ToArgs("--verbosity", ""))
.AddArgs(VersionSuffix.ToArgs("--version-suffix", ""))
.AddBooleanArgs(
("--disable-build-servers", DisableBuildServers),
("--force", Force),
("--no-dependencies", NoDependencies),
("--no-incremental", NoIncremental),
("--no-restore", NoRestore),
("--nologo", NoLogo),
("--no-self-contained", NoSelfContained),
("--self-contained", SelfContained),
("--use-current-runtime", UseCurrentRuntime),
("--diagnostics", Diagnostics)
)
.AddProps("--property", Props.ToArray())
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Builds a project and all of its dependencies.", ShortName, "build", Project.ToArg());
}
/// <summary>
/// Shuts down build servers that are started from dotnet.
/// <p>
/// By default, all servers are shut down.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-build-server">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// // Shuts down all build servers that are started from dotnet.
/// new DotNetBuildServerShutdown()
/// .Run().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="Servers">Shuts down build servers that are started from dotnet. By default, all servers are shut down.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetBuildServerShutdown(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<DotNetBuildServer> Servers,
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetBuildServerShutdown(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetBuildServerShutdown()
: this([], [], [])
{
}
/// <inheritdoc/>
public IStartInfo GetStartInfo(IHost host)
{
if (host == null) throw new ArgumentNullException(nameof(host));
return host.CreateCommandLine(ExecutablePath)
.WithShortName(ToString())
.WithWorkingDirectory(WorkingDirectory)
.WithVars(Vars.ToArray())
.AddArgs("build-server")
.AddArgs("shutdown")
.AddArgs(Servers.ToArgs("", ""))
.AddBooleanArgs(
("--diagnostics", Diagnostics)
)
.AddArgs(Args.ToArray());
}
/// <inheritdoc/>
public override string ToString() => (ExecutablePath == string.Empty ? "dotnet" : Path.GetFileNameWithoutExtension(ExecutablePath)).GetShortName("Shuts down build servers that are started from dotnet.", ShortName, "build-server", "shutdown");
}
/// <summary>
/// Cleans the output of a project.
/// <p>
/// This command cleans the output of the previous build. It's implemented as an MSBuild target, so the project is evaluated when the command is run. Only the outputs created during the build are cleaned. Both intermediate (obj) and final output (bin) folders are cleaned.
/// </p>
/// <br/><a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-clean">.NET CLI command</a><br/>
/// <example>
///<code>
/// using HostApi;
///
/// // Clean the project, running a command like: "dotnet clean" from the directory "MyLib"
/// new DotNetClean()
/// .WithWorkingDirectory("MyLib")
/// .Build().EnsureSuccess();
///</code>
/// </example>
/// </summary>
/// <param name="Args">Specifies the set of command line arguments to use when starting the tool.</param>
/// <param name="Vars">Specifies the set of environment variables that apply to this process and its child processes.</param>
/// <param name="Props">MSBuild options for setting properties.</param>
/// <param name="ExecutablePath">Overrides the tool executable path.</param>
/// <param name="WorkingDirectory">Specifies the working directory for the tool to be started.</param>
/// <param name="Project">The project or solution file to operate on. If not specified, the command searches the current directory for one. If more than one solution or project is found, an error is thrown.</param>
/// <param name="ArtifactsPath">All build output files from the executed command will go in subfolders under the specified path, separated by project.</param>
/// <param name="Configuration">Defines the build configuration. The default for most projects is Debug, but you can override the build configuration settings in your project.</param>
/// <param name="Framework">Builds and runs the app using the specified framework. The framework must be specified in the project file.</param>
/// <param name="NoLogo">Doesn't display the startup banner or the copyright message.</param>
/// <param name="Output">Directory in which to place the built binaries. If not specified, the default path is ./bin/<configuration>/<framework>/. For projects with multiple target frameworks (via the TargetFrameworks property), you also need to define --framework when you specify this option.</param>
/// <param name="Runtime">Specifies the target runtime to restore packages for. For a list of Runtime Identifiers (RIDs), see the RID catalog. -r short option available since .NET Core 3.0 SDK.</param>
/// <param name="TerminalLogger">Specifies whether the terminal logger should be used for the build output.</param>
/// <param name="Verbosity">Sets the verbosity level of the command. Allowed values are <see cref="DotNetVerbosity.Quiet"/>, <see cref="DotNetVerbosity.Minimal"/>, <see cref="DotNetVerbosity.Normal"/>, <see cref="DotNetVerbosity.Detailed"/>, and <see cref="DotNetVerbosity.Diagnostic"/>. The default is <see cref="DotNetVerbosity.Minimal"/>. For more information, see <see cref="DotNetVerbosity"/>.</param>
/// <param name="Diagnostics">Enables diagnostic output.</param>
/// <param name="ShortName">Specifies a short name for this operation.</param>
[Target]
public partial record DotNetClean(
IEnumerable<string> Args,
IEnumerable<(string name, string value)> Vars,
IEnumerable<(string name, string value)> Props,
string Project = "",
string ArtifactsPath = "",
string Configuration = "",
string Framework = "",
bool? NoLogo = null,
string Output = "",
string Runtime = "",
DotNetTerminalLogger? TerminalLogger = null,
DotNetVerbosity? Verbosity = null,
bool? Diagnostics = null,
string ExecutablePath = "",
string WorkingDirectory = "",
string ShortName = "")
{
/// <summary>
/// Create a new instance of the command.
/// </summary>
/// <param name="args">Specifies the set of command line arguments to use when starting the tool.</param>
public DotNetClean(params string[] args)
: this(args, [], [])
{
}
/// <summary>
/// Create a new instance of the command.
/// </summary>
public DotNetClean()
: this([], [], [])
{
}
/// <inheritdoc/>