I'm trying to generate the Distributed SQL Server Cache for ASP.NET Core 2.0, using the CLI, but I only get an error. The instructions say to execute
dotnet sql-cache create <connection string> <schema> <table name>
but when I do, it simply responds with No executable found matching command "dotnet-sql-cache"
.
I have installed Microsoft.Extensions.Caching.SqlConfig.Tools 2.0.0
on that project. So it should work from the project root, no?
When I execute dotnet -h
, I get .NET Command Line Tools (2.0.2)
, etc. Surprisingly enough, sql-cache
is not listed there among the SDK commands, alongside new, restore, run, migrate, etc. Shouldn't it be?