我在发布到 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.
显然这是一个天蓝色的权限错误,如何解决这个问题。谢谢。