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.