helpcenter/publish.proj

16 lines
468 B
Plaintext
Raw 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="/Web"
PhysicalPath="Web\"
TargetPath="Precompiled"
Updateable="true"
Force = "true"
FixedNames = "false"
Debug="false"
ToolPath="C:\Windows\Microsoft.NET\Framework\v4.0.30319\"
/>
</Target>
</Project>