S
sri_san
Hi group,
I am new to MSBuild and trying to figure out how to
include the "precompile option" in the project file - equivalent to
"aspnet_compiler -v " so that the first request doesnt go through
JIT.
I assume, there has to be an option in the target element
but I might be wrong..
<Target Name="Compile" DependsOnTarget="Resources" >
<Csc Sources="@(CSFile)"
Resources="@(CompiledResources)"
References="@(Reference)"
<Output TaskParameter="OutputAssembly"
ItemName="FinalAssemblyName" />
</Csc>
</Target>
Thanks for your help,
Sam.
I am new to MSBuild and trying to figure out how to
include the "precompile option" in the project file - equivalent to
"aspnet_compiler -v " so that the first request doesnt go through
JIT.
I assume, there has to be an option in the target element
but I might be wrong..
<Target Name="Compile" DependsOnTarget="Resources" >
<Csc Sources="@(CSFile)"
Resources="@(CompiledResources)"
References="@(Reference)"
<Output TaskParameter="OutputAssembly"
ItemName="FinalAssemblyName" />
</Csc>
</Target>
Thanks for your help,
Sam.