How do I include files external to solution directory in web deploy package?

erotavlas 6 Reputation points
2021-10-15T16:40:16.69+00:00

Referring to this document
https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/visual-studio-publish-profiles?view=aspnetcore-5.0

Does this instruction for including files work for ASP.NET framework publish profile? If not is there an equivalent document for ASP.NET Framework?

I tried adding that section to my publish profile <ResolvedFileToPublish>
But nothing happened. My file did not get copied.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,243 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Lan Huang-MSFT 25,386 Reputation points Microsoft Vendor
    2021-10-18T06:16:54.153+00:00

    Hi @erotavlas ,
    The following link is about ASP.NET Web Deployment using Visual Studio: Deploying Extra Files:
    https://learn.microsoft.com/en-us/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/deploying-extra-files

    In Visual Studio, open Staging.pubxml.
    At the end of the file, before the closing </Project> tag, add the following markup:

    <ItemGroup>  
          <_CustomFiles Include="..\ExtraFiles\**\*" />  
          <FilesForPackagingFromProject Include="%(_CustomFiles.Identity)">  
            <DestinationRelativePath>%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath>  
          </FilesForPackagingFromProject>  
    </ItemGroup>  
    

    Best regards,
    Lan Huang


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments