Copy all files and folders using msbuild

后端 未结 10 1831
感动是毒
感动是毒 2020-11-30 22:22

Just wondering if someone could help me with some msbuild scripts that I am trying to write. What I would like to do is copy all the files and sub folders from a folder to

10条回答
  •  借酒劲吻你
    2020-11-30 22:40

    I think the problem might be in how you're creating your ItemGroup and calling the Copy task. See if this makes sense:

    
        
            ..\SomeDestinationDirectory
            ..\SomeSourceDirectory
        
    
        
            
                
            
    
            
        
    
    

提交回复
热议问题