In Visual Studio, how can I set the Build Action for an entire folder?

前端 未结 5 679
野趣味
野趣味 2020-11-29 01:29

I have a project in Visual Studio. I need to deploy some 3rd party files along with my code. Typically I would put this files in a \"Resources\" directory and set the Buil

5条回答
  •  甜味超标
    2020-11-29 02:16

    Edit your *.csproj or .vbproj file

    Add this tag

      
        
      

    the final file must look like this:

    
    <---some more tags--->
          
            
          
    
    

提交回复
热议问题