From 97582854b58c20cf224c76bd0bddaaf691d75306 Mon Sep 17 00:00:00 2001 From: Kevin Burnett Date: Wed, 10 May 2017 14:58:10 -0400 Subject: [PATCH] dotnet build fails without sql server dependency (#3215) * dotnet build fails without sql server dependency this makes the docs work for me --- compose/aspnet-mssql-compose.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/compose/aspnet-mssql-compose.md b/compose/aspnet-mssql-compose.md index ac6e1b4c70..545c1e2bca 100644 --- a/compose/aspnet-mssql-compose.md +++ b/compose/aspnet-mssql-compose.md @@ -145,6 +145,22 @@ configure this app to use our SQL Server database, and then create a } [...] ``` + +1. Go to `app.csproj`. You will find a line like: + + ``` + + ``` + + The generated project uses sqlite by default. To use SQL Server, add this line to + `app.csproj`: + + ``` + + ``` + + The Sqlite dependency was at version 1.1.2 at the time of this writing. Use the same + version for the SQL Server dependency. 1. Ready! You can now run the `docker-compose build` command.