Power
shell初学者在这里..
原文链接:https://www.f2er.com/xml/292561.html所以我用PowerShell脚本创建了一个Nuget包. powershell脚本在安装Visual Studio项目时修改了xml架构.问题是….
如果在xml文件中有多行块注释,如
<!--<foo> <bar> </bar> </foo>-->
脚本运行后,Visual Studio弹出一条消息,说我的文件有“不一致的行结束……”
如果没有评论,或者如果有单行注释
<!--foo-->
没有问题.以某种方式,以块注释结尾的行由powershell函数从CRLF更改为其他内容.
这是我的powershell脚本,用于加载和保存xml文件
[xml]$xml = gc $xmlFileLocation -encoding utf8 $xml.Save($xmlFileLocation)
我也尝试过类似的东西
set-content -encoding utf8 $xmlFileLocation $xml.outerXml
但我继续得到这个消息……
任何sugguests /帮助将非常感激.