Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit d2e81a8

Browse files
committed
feedback changes
1 parent 9af99a8 commit d2e81a8

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

docs/azure-data-studio/extensions/sql-database-project-extension-build-from-command-line.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dotnet build /p:NetCoreBuild=true
2525
```
2626

2727

28-
## Previous SQL projects
28+
## Non-SDK-style SQL projects
2929

3030
### Prerequisites
3131

@@ -82,7 +82,7 @@ dotnet build "<sqlproj file path>" /p:NetCoreBuild=true /p:NETCoreTargetsPath="<
8282
For example, from `/usr/share/dotnet` on Linux:
8383

8484
```console
85-
dotnet build "/home/myuser/Documents/DatabaseProject1/DatabaseProject1.sqlproj" /p:NetCoreBuild=true /p:NETCoreTargetsPath="/home/myuser/.azuredatastudio-insiders/extensions/microsoft.sql-database-projects-0.x.x/BuildDirectory"
85+
dotnet build "/home/myuser/Documents/DatabaseProject1/DatabaseProject1.sqlproj" /p:NetCoreBuild=true /p:NETCoreTargetsPath="/home/myuser/.azuredatastudio/extensions/microsoft.sql-database-projects-x.x.x/BuildDirectory"
8686
```
8787

8888
## Next steps

docs/azure-data-studio/extensions/sql-database-project-extension-sdk-style-projects.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ ms.date: 5/24/2022
1414

1515
# Using SDK-style SQL projects with the SQL Database Projects extension (Preview)
1616

17-
This article introduces [Microsoft.Build.Sql](https://www.nuget.org/packages/Microsoft.Build.Sql) for SDK-style SQL projects in the SQL Database Projects extension in Azure Data Studio or VS Code. SDK-style SQL projects especially advantageous for applications shipped through pipelines or built in cross-platform environments. The initial announcement is available in [TechCommunity](https://techcommunity.microsoft.com/t5/azure-sql-blog/microsoft-build-sql-the-next-frontier-of-sql-projects/ba-p/3290628).
17+
This article introduces [Microsoft.Build.Sql](https://www.nuget.org/packages/Microsoft.Build.Sql) for SDK-style SQL projects in the SQL Database Projects extension in Azure Data Studio or VS Code. SDK-style SQL projects are especially advantageous for applications shipped through pipelines or built in cross-platform environments. The initial announcement is available in [TechCommunity](https://techcommunity.microsoft.com/t5/azure-sql-blog/microsoft-build-sql-the-next-frontier-of-sql-projects/ba-p/3290628).
1818

1919
## Create an SDK-style database project
2020

2121
### Blank project
2222

2323
In the **Projects** view, select the **New Project** button and enter a project name in the text input that appears. In the "Select a Folder" dialog that appears, select a directory for the project's folder, `.sqlproj` file, and other contents to reside in.
2424

25-
By default the selection for **SDK-style project (Preview)** is checked. When the dialog is completed the empty project is opened and visible in the **Projects** view for editing.
25+
By default the selection for **SDK-style project (Preview)** is checked. When the dialog is completed, the empty project is opened and visible in the **Projects** view for editing.
2626

2727
### From an existing database
2828

2929
In the **Project** view, select the **Import Project from Database** button and connect to a SQL Server. Once the connection is established, select a database from the list available databases and set the name of the project. Select a target structure of the extraction.
3030

31-
By default the selection for **SDK-style project (Preview)** is checked. When the dialog is completed the new project is opened and contains SQL scripts for the contents of the selected database.
31+
By default the selection for **SDK-style project (Preview)** is checked. When the dialog is completed, the new project is opened and contains SQL scripts for the contents of the selected database.
3232

3333
## Build and publish
3434

@@ -40,7 +40,7 @@ To build an SDK-style SQL project from the command line on Windows, macOS, or Li
4040
dotnet build /p:NetCoreBuild=true
4141
```
4242

43-
The dacpac resulting from building an SDK-style SQL project is compatible with tooling associated with dacpac actions, including [SqlPackage](../../tools/sqlpackage/sqlpackage-publish.md).
43+
The `.dacpac` resulting from building an SDK-style SQL project is compatible with tooling associated with the data-tier application framework (`.dacpac`, `.bacpac`), including [SqlPackage](../../tools/sqlpackage/sqlpackage-publish.md).
4444

4545

4646
## Next steps

docs/tools/visual-studio-code/mssql-extensions-vscode.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 5/24/2022
1212

1313
# mssql extension for Visual Studio Code
1414

15-
This article introduces the **mssql** extension for Visual Studio Code (VS Code) to work with SQL Server and Azure SQL databases on Windows, macOS, and Linux. The [mssql extension for Visual Studio Code](https://aka.ms/mssql-marketplace) provides querying capabilities for Azure SQL and SQL Server as well as additional features for developers with SQL Projects and SQL bindings for Azure Functions. The mssql extension for VS Code includes the [SQL Database Projects extension](../../azure-data-studio/extensions/sql-database-project-extension.md) with support for SQL projects on Windows, macOS, and Linux.
15+
This article introduces the **mssql** extension for Visual Studio Code (VS Code) to work with SQL Server and Azure SQL databases on Windows, macOS, and Linux. The [mssql extension for Visual Studio Code](https://aka.ms/mssql-marketplace) provides querying capabilities for Azure SQL and SQL Server as well as additional features for developers with SQL Projects and SQL bindings for Azure Functions. The mssql extension for VS Code includes the [SQL Database Projects extension](../../azure-data-studio/extensions/sql-database-project-extension.md).
1616

1717

1818
## Functionality overview
@@ -29,14 +29,15 @@ The following functionality is available in the mssql extension for VS Code:
2929
- Create Azure Functions with [SQL bindings](https://aka.ms/sqlbindings)
3030

3131

32-
### Azure Data Studio and mssql extension comparison
32+
### Comparing Azure Data Studio and the mssql extension
3333

3434
Both [Azure Data Studio](../../azure-data-studio/what-is-azure-data-studio.md) and the mssql extension for VS Code are available for Windows, macOS, and Linux.
3535

3636
Benefits of working with Azure SQL and SQL Server in VS Code include:
3737

3838
- single code editor for your SQL and other code (such as C#, Python, JavaScript, Java, PHP, and Go)
3939
- broad extension marketplace with extensions for remote development, Docker, and more
40+
- available for use in GitHub Codespaces
4041

4142

4243
You might consider using Azure Data Studio in addition to the mssql extension for VS Code if you would benefit from these capabilities:
@@ -45,6 +46,7 @@ You might consider using Azure Data Studio in addition to the mssql extension fo
4546
- graphical table designer and query plans
4647
- schema comparison for databases, SQL projects, and dacpacs
4748
- extensions for SQL Agent, SQL Profiler, and Flat File Import
49+
- SQL and .NET Interactive notebooks
4850

4951
## Install the mssql extension in VS Code
5052

@@ -74,10 +76,10 @@ The mssql extension for VS Code is supported on Windows, macOS, and Linux. The
7476

7577
## SQL Tools Service
7678

77-
The mssql extension automatically installs the [SQL Tools Service](https://github.com/microsoft/sqltoolsservice), an open source .NET-based API that provides services to several SQL tools, including [Azure Data Studio](../../azure-data-studio/what-is-azure-data-studio.md) and the mssql extension for VS Code. SQL Tools Service provides features such as common language service operations (IntelliSense auto-complete suggestions, peek definition, SQL error diagnostics, quickinfo hovers), connection management, and query execution. The source code for SQL Tools Service is availabe on [GitHub](https://github.com/microsoft/sqltoolsservice).
79+
The mssql extension automatically installs the [SQL Tools Service](https://github.com/microsoft/sqltoolsservice), an open source .NET-based API that provides services to several SQL tools, including [Azure Data Studio](../../azure-data-studio/what-is-azure-data-studio.md) and the mssql extension for VS Code. SQL Tools Service provides features such as common language service operations (IntelliSense auto-complete suggestions, peek definition, SQL error diagnostics, quickinfo hovers), connection management, and query execution. The source code for SQL Tools Service is available on [GitHub](https://github.com/microsoft/sqltoolsservice).
7880

7981

8082
## Next steps
8183
- [Use the mssql extension to query a SQL instance](sql-server-develop-use-vscode.md)
8284
- [Learn more about Visual Studio Code](https://code.visualstudio.com/docs)
83-
- [Learn more about contributing to the mssql extension ](https://github.com/Microsoft/vscode-mssql/wiki)
85+
- [Learn more about contributing to the mssql extension](https://github.com/Microsoft/vscode-mssql/wiki)

docs/tools/visual-studio-code/mssql-query-history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ The ability to pause and start query history capture is available from the comma
6868
## Next steps
6969
- [Use the mssql extension to query a SQL instance](sql-server-develop-use-vscode.md)
7070
- [Learn more about Visual Studio Code](https://code.visualstudio.com/docs)
71-
- [Learn more about contributing to the mssql extension ](https://github.com/Microsoft/vscode-mssql/wiki)
71+
- [Learn more about contributing to the mssql extension](https://github.com/Microsoft/vscode-mssql/wiki)

0 commit comments

Comments
 (0)