Skip to content

Commit ae7d1a5

Browse files
committed
add missing markup /7
1 parent fb53596 commit ae7d1a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aspnetcore/razor-pages/ui-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ To include TypeScript files in an RCL:
128128

129129
* Place the TypeScript files (`.ts`) outside of the `wwwroot` folder. For example, place the files in a `Client` folder.
130130
* Add the following markup to the project file:
131-
* Configure the TypeScript build output for the `wwwroot` folder with the `TypescriptOutDir` property inside.
132-
* Include the TypeScript target as a dependency of the `PrepareForBuildDependsOn` target by adding the following target inside of a `PropertyGroup` in the project file.
131+
* Configure the TypeScript build output for the `wwwroot` folder with the `TypescriptOutDir` property.
132+
* Include the TypeScript target as a dependency of the `PrepareForBuildDependsOn` target.
133133
* Remove the output in the `wwwroot folder`.
134134

135135
[!code-xml[](~/razor-pages/ui-class/remove.xml?highlight=6-9,13)]

aspnetcore/razor-pages/ui-class/remove.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<Content Remove="wwwroot\js\**" />
14+
<Content Remove="wwwroot\{path-to-typescript-outputs}" />
1515
</ItemGroup>H>
1616

1717
</Project>

0 commit comments

Comments
 (0)