helpcenter/publish.proj

12 lines
375 B
Plaintext
Raw Permalink Normal View History

2016-08-29 13:51:20 +00:00
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="PrecompileWeb">
<RemoveDir Directories="Precompiled" ContinueOnError="true" />
<AspNetCompiler
VirtualPath="/"
2021-10-26 11:43:42 +00:00
PhysicalPath="Web\"
TargetPath="Precompiled"
2016-08-29 13:51:20 +00:00
ToolPath="C:\Windows\Microsoft.NET\Framework\v4.0.30319\"
/>
</Target>
</Project>