1

我在发布到 Cloud Azure 时尝试将多个 html 文件合并为一个,我将以下内容添加到 .csproj 文件中

  <Target Name="AfterBuild">
    <CreateItem Include="$(ProjectDir)js\ordering-widget\tpl\*.html">
      <Output TaskParameter="Include" ItemName="htmlFilesToCombine" />
    </CreateItem>

    <ReadLinesFromFile File="%(htmlFilesToCombine.FullPath)">
      <Output TaskParameter="Lines" ItemName="htmlLines" />
    </ReadLinesFromFile>

    <WriteLinesToFile File="$(ProjectDir)js\ordering-widget\tpl\combined.html" Lines="@(htmlLines)" Overwrite="true" /> 
  </Target> 

但是,我收到拒绝访问错误

$/Allegro Web/Allegro Web/Allegro Web.sln ('Allegro Web:Publish' target(s)) - 1 error(s), 1 warning(s),View log file
C:\a\src\Allegro Web\MvcWebRoleCore\MvcWebRoleCore.csproj (983): Could not write lines to file "C:\a\src\Allegro Web\MvcWebRoleCore\js\ordering-widget\tpl\combined.html". Access to the path 'C:\a\src\Allegro Web\MvcWebRoleCore\js\ordering-widget\tpl\combined.html' is denied.

显然这是一个天蓝色的权限错误,如何解决这个问题。谢谢。

4

1 回答 1

1

这与 azure 项目没有直接关系。

这是由于文件在磁盘上只读。您将需要在脚本中添加一个步骤,并在您尝试编写的文件上添加 attrib -r。

于 2013-07-03T20:41:47.087 回答