Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
83aa984d
Unverified
Commit
83aa984d
authored
Feb 10, 2020
by
Henry Darnell
Committed by
GitHub
Feb 11, 2020
Browse files
Add dotnet watch and dotnet watch run (#8612)
parent
f362b69d
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/dotnet/README.md
View file @
83aa984d
...
...
@@ -10,12 +10,14 @@ plugins=(... dotnet)
## Aliases
| Alias | Command | Description |
|-------|--------------|-------------------------------------------------------------------|
| dn | dotnet new | Create a new .NET project or file. |
| dr | dotnet run | Build and run a .NET project output. |
| dt | dotnet test | Run unit tests using the test runner specified in a .NET project. |
| ds | dotnet sln | Modify Visual Studio solution files. |
| da | dotnet add | Add a package or reference to a .NET project. |
| dp | dotnet pack | Create a NuGet package. |
| dng | dotnet nuget | Provides additional NuGet commands. |
\ No newline at end of file
| Alias | Command | Description |
|-------|------------------|-------------------------------------------------------------------|
| dn | dotnet new | Create a new .NET project or file. |
| dr | dotnet run | Build and run a .NET project output. |
| dt | dotnet test | Run unit tests using the test runner specified in a .NET project. |
| dw | dotnet watch | Watch for source file changes and restart the dotnet command. |
| dwr | dotnet watch run | Watch for source file changes and restart the
`run`
command. |
| ds | dotnet sln | Modify Visual Studio solution files. |
| da | dotnet add | Add a package or reference to a .NET project. |
| dp | dotnet pack | Create a NuGet package. |
| dng | dotnet nuget | Provides additional NuGet commands. |
\ No newline at end of file
plugins/dotnet/dotnet.plugin.zsh
View file @
83aa984d
...
...
@@ -111,6 +111,8 @@ compdef _dotnet dotnet
# --------------------------------------------------------------------- #
alias
dr
=
'dotnet run'
alias
dt
=
'dotnet test'
alias
dw
=
'dotnet watch'
alias
dwr
=
'dotnet watch run'
alias
ds
=
'dotnet sln'
alias
da
=
'dotnet add'
alias
dp
=
'dotnet pack'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment