Thank you for reaching out and sharing screenshots.
You can’t see your SDK-style .sqlproj
in SQL Server Object Explorer (SSOX) because Visual Studio 2022 doesn’t support SDK-style SQL projects in SSOX.
Why: SSOX only works with classic-style SQL projects. SDK-style projects are designed for modern DevOps workflows and are supported in Solution Explorer, not SSOX.
What You Can Do Instead:
- Use Solution Explorer to manage and build the project.
- Use the command line (
dotnet build
,sqlpackage
) for builds and deployments. - For interactive database features (like schema compare), use Azure Data Studio or VS Code with the SQL Database Projects extension.
- If you need full SSOX support, consider switching back to a classic SQL project.
Let us know if you need any more help with this.