我正在尝试编写一个加载.csproj文件的小程序,如果它包含以下xml,则搜索该文件:
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>*</CodeAnalysisRuleset>
(明星是任何值的通配符)
如果这些行感到兴奋;我希望他们被替换。
我怎样才能完成这项工作?
我试过了:
File.WriteAllText(args[0], text.Replace("match", "replacement")); // Match and replacement being their corresponding texts.