1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Fixed formatting error in readme temporal product catalog

This commit is contained in:
Jovan Popovic
2016-10-17 00:09:18 +02:00
parent 16b2c5d865
commit b8eef415f6

View File

@ -29,8 +29,7 @@ To run this sample, you need the following prerequisites.
**Software prerequisites:**
1. SQL Server 2016 (or higher) or an Azure SQL Database
2. [ASP.NET Core 1.0 SDK](https://www.microsoft.com/net/core#windows) (or higher)
2.1. Optional: Visual Studio 2015 Update 3 (or higher) or Visual Studio Code Editor
2. [ASP.NET Core 1.0 SDK](https://www.microsoft.com/net/core#windows) (or higher). Optional: Visual Studio 2015 Update 3 (or higher) or Visual Studio Code Editor.
**Azure prerequisites:**
@ -44,9 +43,7 @@ To run this sample, you need the following prerequisites.
2. From SQL Server Management Studio or Visual Studio/Sql Server Data Tools connect to your SQL Server 2016 or Azure SQL database and execute setup.sql script that will create and populate Product table and create required stored procedures.
3. Build the project - Open command prompt in project root folder (the folder that contains project json), and run following commands: **dotnet restore** to take all necessary NuGet packages, **dotnet build** to build the project.
3.1. As an alternative, open the **ProductCatalog.xproj** file from the root directory using Visual Studio 2015 U3. Restore packages using right-click menu on the project in Visual Studio and by choosing Restore Packages item.
3. Build the project - Open command prompt in project root folder (the folder that contains project json), and run following commands: **dotnet restore** to take all necessary NuGet packages, **dotnet build** to build the project. As an alternative, open the **ProductCatalog.xproj** file from the root directory using Visual Studio 2015 U3. Restore packages using right-click menu on the project in Visual Studio and by choosing Restore Packages item.
4. Locate Startup.cs file in the project, change connection string in ConfigureServices() method to reference your database (default value ProductCatalog database on local instance with integrated security), and build solution using Ctrl+Shift+B, right-click on project + Build, Build/Build Solution from menu, or **dotnet build** command from the command line (from the root folder of application).