I want to have a virtual application inside the site. I changed my ServiceDefinition.csdeflike
<Site name="Web">
<VirtualApplication name="MyVirtualApp" physicalDirectory="[path to my other web app]" />
<Bindings>
<Binding name="HttpIn" endpointName="HttpIn" />
</Bindings>
</Site>
When I create the package, I see that it includes the .csfiles folder obj. It's useless. I do not want these files to be included in my batch file (.cspkg).
What should I do so that when publishing, such files should not be included in the package file?
source
share