parent
de1fff2e80
commit
b50cdaea8e
3 changed files with 38 additions and 0 deletions
|
@ -72,6 +72,10 @@ describe("V2XmlFormatter", () => {
|
|||
testFormatter(xmlFormatter, options, "issue-185");
|
||||
});
|
||||
|
||||
it("should support single quotes within double-quoptes attributes and vice-versa", () => {
|
||||
testFormatter(xmlFormatter, options, "issue-187");
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
|
17
src/test/test-data/issue-187.formatted.xml
Normal file
17
src/test/test-data/issue-187.formatted.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>None</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)'=='Release' ">
|
||||
<Content Remove="appsettings.Development.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)'=='Debug' ">
|
||||
<Content Remove="appsettings.Production.json" />
|
||||
</ItemGroup>
|
||||
</Project>
|
17
src/test/test-data/issue-187.unformatted.xml
Normal file
17
src/test/test-data/issue-187.unformatted.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>None</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)'=='Release' ">
|
||||
<Content Remove="appsettings.Development.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(Configuration)'=='Debug' ">
|
||||
<Content Remove="appsettings.Production.json" />
|
||||
</ItemGroup>
|
||||
</Project>
|
Loading…
Add table
Reference in a new issue