Silverlight xap file not being copied to ClientBin on Build Server

后端 未结 3 587
慢半拍i
慢半拍i 2021-01-11 23:52

We\'re developing a ASP.Net Web Application project that has a Silverlight 2.0 component. We\'ve referenced the silverlight project in the web application properties, and th

3条回答
  •  死守一世寂寞
    2021-01-12 00:22

    I found the following tag in my project file fixed it:

    $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
    

    e.g.

    
      $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
    
    
    
    
    

    Maybe VSToolsPath is set before this point on my local machine, but not on the build server.

提交回复
热议问题