Bundle dotnet-sql-cache and dotnet-user-secrets in the CLI
This commit is contained in:
parent
94fd3fd392
commit
d38362835d
3 changed files with 14 additions and 1 deletions
|
@ -8,6 +8,7 @@ Documents Index
|
||||||
- [.NET Core native pre-requisities document](https://github.com/dotnet/core/blob/master/Documentation/prereqs.md)
|
- [.NET Core native pre-requisities document](https://github.com/dotnet/core/blob/master/Documentation/prereqs.md)
|
||||||
- [Roadmap and OS support](https://github.com/dotnet/core/blob/master/roadmap.md)
|
- [Roadmap and OS support](https://github.com/dotnet/core/blob/master/roadmap.md)
|
||||||
- [Comprehensive CLI documentation](https://docs.microsoft.com/en-us/dotnet/articles/core/preview3/tools/)
|
- [Comprehensive CLI documentation](https://docs.microsoft.com/en-us/dotnet/articles/core/preview3/tools/)
|
||||||
|
- [ASP.NET Core Command Line Tools](general/aspnetcore-tools.md)
|
||||||
|
|
||||||
## Working with the CLI repo
|
## Working with the CLI repo
|
||||||
|
|
||||||
|
|
10
Documentation/general/aspnetcore-tools.md
Normal file
10
Documentation/general/aspnetcore-tools.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
ASP.NET Core Command Line Tools
|
||||||
|
===============================
|
||||||
|
|
||||||
|
The .NET Core CLI includes some commands that are specific to ASP.NET Core projects.
|
||||||
|
|
||||||
|
- dotnet dev-certs
|
||||||
|
- dotnet user-secrets
|
||||||
|
- dotnet sql-cache
|
||||||
|
|
||||||
|
For more information on these tools, see <https://github.com/aspnet/DotNetTools>.
|
|
@ -1,6 +1,8 @@
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BundledDotnetTools Include="dotnet-watch" Version="$(AspNetCoreVersion)" />
|
|
||||||
<BundledDotnetTools Include="dotnet-dev-certs" Version="$(AspNetCoreVersion)" />
|
<BundledDotnetTools Include="dotnet-dev-certs" Version="$(AspNetCoreVersion)" />
|
||||||
|
<BundledDotnetTools Include="dotnet-sql-cache" Version="$(AspNetCoreVersion)" />
|
||||||
|
<BundledDotnetTools Include="dotnet-user-secrets" Version="$(AspNetCoreVersion)" />
|
||||||
|
<BundledDotnetTools Include="dotnet-watch" Version="$(AspNetCoreVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in a new issue