Skip to content

Commit 18677d2

Browse files
authored
Update docs/tools/sql-database-projects/concepts/pre-post-deployment-scripts.md
1 parent 8946624 commit 18677d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/tools/sql-database-projects/concepts/pre-post-deployment-scripts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ Those files should be excluded from the database model build by setting the `Bui
6565
> In SDK-style SQL projects, adding a `Build Remove="path/file.sql"` entry removes the file from the project entirely, which causes it to no longer appear in the VS Code project view. To keep the file visible while still excluding it from model compilation, re-add it as a `None` item:
6666
>
6767
> ```xml
68-
> <Build Remove="scripts\script1.sql" />
69-
> <None Include="scripts\script1.sql" />
70-
> <Build Remove="scripts\script2.sql" />
71-
> <None Include="scripts\script2.sql" />
68+
> <Build Remove="scripts/script1.sql" />
69+
> <None Include="scripts/script1.sql" />
70+
> <Build Remove="scripts/script2.sql" />
71+
> <None Include="scripts/script2.sql" />
7272
> ```
7373
>
7474
> This prevents the file from being compiled as part of the database model while keeping it visible in the project.

0 commit comments

Comments
 (0)