You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/go/Program.cs
+69-13Lines changed: 69 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -15,16 +15,15 @@
15
15
/// </summary>
16
16
/// <param name="input">Path to an existing .cs file or remote ref (owner/repo[@ref][:path]).</param>
17
17
/// <param name="r2r">Publish with ReadyToRun instead of native AOT; supports more dynamic .NET features while keeping most publish optimizations. Alias: --go-r2r.</param>
18
-
/// <param name="force">Force re-download of remote ref if applicable. Alias: --go-force.</param>
19
18
/// <param name="debug">Launch debugger before executing. Alias: --go-debug.</param>
20
19
/// <param name="extraArgs">Arguments before '--' are passed to 'dotnet publish'; arguments after '--' are forwarded to the published app. Without '--', all extra arguments are forwarded to the published app.
/// Deletes cached publish artifacts for a file-based .NET app.
57
+
/// Deletes cached publish artifacts for a file-based .NET app, or for a remote ref: deletes the bundle and also its associated publish artifacts for every previously-used path recorded in the bundle's ETags/Entry (:path on the ref is ignored).
59
58
/// </summary>
60
-
/// <param name="input">Path to an existing .cs file.</param>
59
+
/// <param name="input">Path to an existing .cs file or remote ref (owner/repo[@ref][:path]).</param>
61
60
/// <param name="all">Delete cached artifacts for all apps instead.</param>
/// Runs a file-based .NET app from a .cs entrypoint using dotnet run for fast iteration.
89
146
/// </summary>
90
147
/// <param name="input">Path to an existing .cs file or remote ref (owner/repo[@ref][:path]).</param>
91
148
/// <param name="r2r">Accepted for consistency (ignored for dev which uses dotnet run). Alias: --go-r2r.</param>
92
-
/// <param name="force">Force re-download of remote ref if applicable. Alias: --go-force.</param>
93
149
/// <param name="debug">Launch debugger before executing. Alias: --go-debug.</param>
94
150
/// <param name="extraArgs">Arguments before '--' are passed to 'dotnet run'; arguments after '--' are forwarded to the app. Without '--', all extra arguments are forwarded to the app.
Copy file name to clipboardExpand all lines: src/go/help.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,9 @@ Arguments:
9
9
10
10
Options:
11
11
--r2r Publish with ReadyToRun instead of native AOT; supports more dynamic .NET features while keeping most publish optimizations. Alias: --go-r2r.
12
-
--force Force re-download of remote ref if applicable. Alias: --go-force.
13
12
--debug Launch debugger before executing. Alias: --go-debug.
14
13
15
14
Commands:
16
-
clean Deletes cached publish artifacts for a file-based .NET app.
15
+
clean Deletes cached publish artifacts fora file-based .NET app, or for a remote ref: deletes the bundle and also its associated publish artifacts for every previously-used path recordedin the bundle's ETags/Entry (:path on the ref is ignored).
17
16
dev Runs a file-based .NET app from a .cs entrypoint using dotnet run for fast iteration.
0 commit comments