Add Failing Test

Issue: #187
This commit is contained in:
Josh Johnson 2018-06-11 18:38:42 -04:00
parent de1fff2e80
commit b50cdaea8e
3 changed files with 38 additions and 0 deletions

View File

@ -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");
});
});
});

View 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>

View 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>