-
Hi, I have a sqlproject created with Azure Data Studio. How to know if it is a SDK-styled sqlproject? |
Beta Was this translation helpful? Give feedback.
Answered by
dzsquared
Apr 23, 2024
Replies: 1 comment
-
The quickest way to see if a project is an SDK-style project is to open the .sqlproj file. In Azure Data Studio there's a menu item on the project node in the projects pane for "Edit .sqlproj File" as well as the file explorer view. If the top of the project looks similar to: <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build">
<Sdk Name="Microsoft.Build.Sql" Version="0.1.12-preview" /> then it is an SDK-style project. The key here is that element Otherwise, it's an original style project. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dzsquared
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The quickest way to see if a project is an SDK-style project is to open the .sqlproj file. In Azure Data Studio there's a menu item on the project node in the projects pane for "Edit .sqlproj File" as well as the file explorer view.
If the top of the project looks similar to:
then it is an SDK-style project. The key here is that element
<SDK Name="Microsoft.Build.Sql" Version="0.1.x-preview" />
Otherwise, it's an original style project.