mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00
Remove the dotnet (1) man page (#78229)
All the man pages, including a different version of dotnet.1, are currently maintained in the dotnet/sdk repo. See https://github.com/dotnet/sdk/tree/main/documentation/manpages and in particular, the documentation on how those are generated from dotnet/docs repository: https://github.com/dotnet/sdk/blob/main/documentation/manpages/tool/README.md This leftover copy of dotnet.1 in this repository is extremely out of date and unmaintained. Lets just delete it. Co-authored-by: Andy Gocke <angocke@microsoft.com>
This commit is contained in:
parent
6a613323cf
commit
e1b1478640
13 changed files with 0 additions and 170 deletions
|
@ -142,7 +142,6 @@
|
|||
<MibcOptimizationDataDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsDir)', 'mibc'))</MibcOptimizationDataDir>
|
||||
<XmlDocDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'docs'))</XmlDocDir>
|
||||
<DocsDir>$([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)', 'docs'))</DocsDir>
|
||||
<ManPagesDir>$([MSBuild]::NormalizeDirectory('$(DocsDir)', 'manpages'))</ManPagesDir>
|
||||
|
||||
<AppleAppBuilderDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'AppleAppBuilder', 'Debug', '$(NetCoreAppToolCurrent)'))</AppleAppBuilderDir>
|
||||
<AndroidAppBuilderDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'AndroidAppBuilder', 'Debug', '$(NetCoreAppToolCurrent)', 'publish'))</AndroidAppBuilderDir>
|
||||
|
|
|
@ -1,152 +0,0 @@
|
|||
.\" Automatically generated by Pandoc 1.15.1
|
||||
.\"
|
||||
.hy
|
||||
.TH "dotnet-cli" "1" "January 2016" "" ""
|
||||
.SH NAME
|
||||
.PP
|
||||
dotnet \-\- general driver for running the command\-line commands
|
||||
.SH SYNOPSIS
|
||||
.PP
|
||||
dotnet [\-\-version] [\-\-help] [\-\-verbose] < command > [< args >]
|
||||
.SH DESCRIPTION
|
||||
.PP
|
||||
dotnet is a generic driver for the CLI toolchain.
|
||||
Invoked on its own, it will give out brief usage instructions.
|
||||
.PP
|
||||
Each specific feature is implemented as a command.
|
||||
In order to use the feature, it is specified after dotnet, i.e.
|
||||
\f[C]dotnet\ compile\f[].
|
||||
All of the arguments following the command are command\[aq]s own
|
||||
arguments.
|
||||
.SH OPTIONS
|
||||
.PP
|
||||
\f[C]\-v,\ \-\-verbose\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Enable\ verbose\ output.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]\-\-version\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Print\ out\ the\ version\ of\ the\ CLI\ tooling
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]\-h,\ \-\-help\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Print\ out\ a\ short\ help\ and\ a\ list\ of\ current\ commands.\
|
||||
\f[]
|
||||
.fi
|
||||
.SH DOTNET COMMANDS
|
||||
.PP
|
||||
The following commands exist for dotnet.
|
||||
.PP
|
||||
\f[C]dotnet\-compile(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Compile\ the\ application\ to\ either\ an\ intermediate\ language\ (IL)\ or\ to\ a\ native\ binary.\
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\-restore(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Restores\ the\ dependencies\ for\ a\ given\ application.\
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\-run(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Runs\ the\ application\ from\ source.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\-publish(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Publishes\ a\ flat\ directory\ that\ contains\ the\ application\ and\ its\ dependencies,\ including\ the\ runtime\ binaries.\
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\-test(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Runs\ tests\ using\ a\ test\ runner\ specified\ in\ project.json.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\-new(1)\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Initializes\ a\ sample\ .NET\ Core\ console\ application.\
|
||||
\f[]
|
||||
.fi
|
||||
.SH EXAMPLES
|
||||
.PP
|
||||
\f[C]dotnew\ new\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Initializes\ a\ sample\ .NET\ Core\ console\ application\ that\ can\ be\ compiled\ and\ ran.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\ restore\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Restores\ dependencies\ for\ a\ given\ application.\
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]dotnet\ compile\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Compiles\ the\ application\ in\ a\ given\ directory.\
|
||||
\f[]
|
||||
.fi
|
||||
.SH ENVIRONMENT
|
||||
.PP
|
||||
\f[C]DOTNET_PACKAGES\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
The\ primary\ package\ cache.\ If\ not\ set,\ defaults\ to\ $HOME/.nuget/packages\ on\ Unix\ or\ %LOCALAPPDATA%\\NuGet\\Packages\ (TBD)\ on\ Windows.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]DOTNET_PACKAGES_CACHE\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
The\ secondary\ cache.\ This\ is\ used\ by\ shared\ hosters\ (such\ as\ Azure)\ to\ provide\ a\ cache\ of\ pre\-downloaded\ common\ packages\ on\ a\ faster\ disk.\ If\ not\ set\ it\ is\ not\ used.
|
||||
\f[]
|
||||
.fi
|
||||
.PP
|
||||
\f[C]DOTNET_SERVICING\f[]
|
||||
.IP
|
||||
.nf
|
||||
\f[C]
|
||||
Specifies\ the\ location\ of\ the\ servicing\ index\ to\ use\ by\ the\ shared\ host\ when\ loading\ the\ runtime.\
|
||||
\f[]
|
||||
.fi
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
dotnet\-compile(1), dotnet\-run(1), dotnet\-publish(1),
|
||||
dotnet\-restore(1)
|
||||
.SH AUTHORS
|
||||
Zlatko Knezevic zlakne\@microsoft.com.
|
|
@ -130,7 +130,6 @@ jobs:
|
|||
|
||||
- subset: installer
|
||||
include:
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- eng/Version.Details.xml
|
||||
- docs/*
|
||||
|
|
|
@ -12,7 +12,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
- eng/pipelines/global-build.yml
|
||||
exclude:
|
||||
- '**.md'
|
||||
|
|
|
@ -17,7 +17,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- /**/*.md
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -8,7 +8,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -15,7 +15,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -10,7 +10,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
@ -37,7 +36,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -8,7 +8,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- .devcontainer/*
|
||||
|
|
|
@ -36,7 +36,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -10,7 +10,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
@ -37,7 +36,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -10,7 +10,6 @@ trigger:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
@ -28,7 +27,6 @@ pr:
|
|||
paths:
|
||||
include:
|
||||
- '*'
|
||||
- docs/manpages/*
|
||||
exclude:
|
||||
- '**.md'
|
||||
- eng/Version.Details.xml
|
||||
|
|
|
@ -32,10 +32,6 @@
|
|||
<CandleVariables Include="DependencyKey" Value="$(WixDependencyKeyName)_$(MajorVersion).$(MinorVersion)_$(TargetArchitecture)" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Manpage Include="$(ManPagesDir)/**/*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="PublishToDisk">
|
||||
<Error Condition="'$(OutputPath)' == ''" Text="Publishing to disk requires the OutputPath to be set to the root of the path to write to." />
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue