I came across a situation the other day where I needed to include a .lic file as part of my Web Deployment Project. I found a good article here that shows the lines you need to add to your web.config file.
<configuration>
<system.web>
<compilation>
<buildProviders>
<remove extension=".lic"/>
<add extension=".lic" type="System.Web.Compilation.ForceCopyBuildProvider"/>
</buildProviders>
</compilation>
</system.web>
</configuration>
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.