Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2018-05-12 00:39:06 +0300
committerMarek Safar <marek.safar@gmail.com>2018-05-21 21:44:40 +0300
commitc57553dcdb6bc9b34d0f133b6afad6430d91d13c (patch)
tree39297040ee82e5676bbed6b4e756cae96172ba1f /src/System.Private.Xml
parent336a2282feb397393763a05274db1b625523b1b4 (diff)
Use shared StringBuilderCache (#29657)
Diffstat (limited to 'src/System.Private.Xml')
-rw-r--r--src/System.Private.Xml/src/System.Private.Xml.csproj2
-rw-r--r--src/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.Xml/src/System.Private.Xml.csproj b/src/System.Private.Xml/src/System.Private.Xml.csproj
index bff32c8149..1eec546b3a 100644
--- a/src/System.Private.Xml/src/System.Private.Xml.csproj
+++ b/src/System.Private.Xml/src/System.Private.Xml.csproj
@@ -20,7 +20,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uapaot-Windows_NT-Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uapaot-Windows_NT-Release|AnyCPU'" />
<ItemGroup>
- <Compile Include="$(CommonPath)\System\IO\StringBuilderCache.cs">
+ <Compile Include="$(CommonPath)\CoreLib\System\Text\StringBuilderCache.cs">
<Link>System\StringBuilderCache.cs</Link>
</Compile>
<Compile Include="$(CommonPath)\System\Marvin.cs">
diff --git a/src/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs b/src/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs
index 16c80c45bf..7254222c5d 100644
--- a/src/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs
+++ b/src/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs
@@ -2,9 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
-using System.Text;
using System.Diagnostics;
using System.IO;
+using System.Text;
namespace System.Xml
{