我的 csproj 文件包含以下项目组。
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
我想更换
<Compile Include="Properties\AssemblyInfo.cs" /> //it have little bit space between Properties\AssemblyInfo.cs" and closing tag(/>)
To
<Compile Include="Properties\AssemblyInfo.cs"/> //it have no space.
我不想要任何空间。如何使用 XDocument linq 来实现它。