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:
authorKarthik Rajasekaran <karajas@microsoft.com>2016-09-17 02:13:51 +0300
committerKarthik Rajasekaran <karajas@microsoft.com>2016-10-18 21:39:53 +0300
commit654f5548f946659c694d110a4bbce8aa33f1a7a1 (patch)
treec5f706b77c05f5adbfd04947cef31b09a1bff604 /src/System.Private.Xml.Linq
parent51663dadffc89d147d10e2f25eff210e6732a138 (diff)
Combine test dependencies into a common project.json.
Restore this common project.json upfront to improve sync time and avoid download contention from nuget.
Diffstat (limited to 'src/System.Private.Xml.Linq')
-rw-r--r--src/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/Properties/project.json34
-rw-r--r--src/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/SDMSample/project.json33
-rw-r--r--src/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/Streaming/project.json32
-rw-r--r--src/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/TreeManipulation/project.json34
-rw-r--r--src/System.Private.Xml.Linq/tests/XPath/XDocument/System.Xml.XPath.XDocument.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/XPath/XDocument/project.json40
-rw-r--r--src/System.Private.Xml.Linq/tests/axes/System.Xml.Linq.Axes.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/axes/project.json28
-rw-r--r--src/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/events/project.json31
-rw-r--r--src/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/misc/project.json32
-rw-r--r--src/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/xNodeBuilder/project.json35
-rw-r--r--src/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj3
-rw-r--r--src/System.Private.Xml.Linq/tests/xNodeReader/project.json34
20 files changed, 0 insertions, 363 deletions
diff --git a/src/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj b/src/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj
index bccab8a12c..16e8ed512a 100644
--- a/src/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/Properties/System.Xml.Linq.Properties.Tests.csproj
@@ -34,8 +34,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/Properties/project.json b/src/System.Private.Xml.Linq/tests/Properties/project.json
deleted file mode 100644
index 68e6d370c3..0000000000
--- a/src/System.Private.Xml.Linq/tests/Properties/project.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Diagnostics.Debug": "4.4.0-beta-24617-03",
- "System.Globalization": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj b/src/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj
index e19641dd41..883d6e44ba 100644
--- a/src/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/SDMSample/System.Xml.Linq.SDMSample.Tests.csproj
@@ -31,8 +31,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/SDMSample/project.json b/src/System.Private.Xml.Linq/tests/SDMSample/project.json
deleted file mode 100644
index e710075eb8..0000000000
--- a/src/System.Private.Xml.Linq/tests/SDMSample/project.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Collections.NonGeneric": "4.4.0-beta-24617-03",
- "System.Globalization": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj b/src/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj
index 094099ce07..a4bb5930c4 100644
--- a/src/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/Streaming/System.Xml.Linq.Streaming.Tests.csproj
@@ -26,8 +26,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/Streaming/project.json b/src/System.Private.Xml.Linq/tests/Streaming/project.json
deleted file mode 100644
index 0350e7295c..0000000000
--- a/src/System.Private.Xml.Linq/tests/Streaming/project.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj b/src/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj
index f3583f0618..8f64145460 100644
--- a/src/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/TreeManipulation/System.Xml.Linq.TreeManipulation.Tests.csproj
@@ -67,8 +67,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/TreeManipulation/project.json b/src/System.Private.Xml.Linq/tests/TreeManipulation/project.json
deleted file mode 100644
index 4ff330d9fa..0000000000
--- a/src/System.Private.Xml.Linq/tests/TreeManipulation/project.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Collections.NonGeneric": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Text.Encoding": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/XPath/XDocument/System.Xml.XPath.XDocument.Tests.csproj b/src/System.Private.Xml.Linq/tests/XPath/XDocument/System.Xml.XPath.XDocument.Tests.csproj
index a5196b7dbf..0e33983e9e 100644
--- a/src/System.Private.Xml.Linq/tests/XPath/XDocument/System.Xml.XPath.XDocument.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/XPath/XDocument/System.Xml.XPath.XDocument.Tests.csproj
@@ -210,8 +210,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/XPath/XDocument/project.json b/src/System.Private.Xml.Linq/tests/XPath/XDocument/project.json
deleted file mode 100644
index be71d5a437..0000000000
--- a/src/System.Private.Xml.Linq/tests/XPath/XDocument/project.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Globalization": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Reflection": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Text.Encoding": "4.4.0-beta-24617-03",
- "System.Text.Encoding.CodePages": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Collections.NonGeneric": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XmlDocument": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "System.Xml.XmlSerializer": "4.4.0-beta-24617-03",
- "System.Xml.XPath": "4.4.0-beta-24617-03",
- "System.Xml.XPath.XmlDocument": "4.4.0-beta-24617-03",
- "System.Xml.XPath.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/axes/System.Xml.Linq.Axes.Tests.csproj b/src/System.Private.Xml.Linq/tests/axes/System.Xml.Linq.Axes.Tests.csproj
index 62623cbe75..ad38609a16 100644
--- a/src/System.Private.Xml.Linq/tests/axes/System.Xml.Linq.Axes.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/axes/System.Xml.Linq.Axes.Tests.csproj
@@ -25,9 +25,6 @@
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
- <ItemGroup>
<ProjectReference Include="..\..\pkg\System.Private.Xml.Linq.pkgproj" />
<ProjectReference Include="..\..\..\System.Private.Xml\pkg\System.Private.Xml.pkgproj" />
<ProjectReference Include="..\..\..\System.Xml.XDocument\pkg\System.Xml.XDocument.pkgproj" />
diff --git a/src/System.Private.Xml.Linq/tests/axes/project.json b/src/System.Private.Xml.Linq/tests/axes/project.json
deleted file mode 100644
index 8c7de7f8d9..0000000000
--- a/src/System.Private.Xml.Linq/tests/axes/project.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Collections.NonGeneric": "4.4.0-beta-24617-03",
- "System.Collections.Specialized": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj b/src/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj
index 797285ab5f..7ed2f42326 100644
--- a/src/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/events/System.Xml.Linq.Events.Tests.csproj
@@ -26,9 +26,6 @@
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
- <ItemGroup>
<ProjectReference Include="..\XDocument.Common\XDocument.Common.csproj">
<Project>{52666206-b6c9-49fa-a1d7-d0a0c68807b0}</Project>
<Name>XDocument.Common</Name>
diff --git a/src/System.Private.Xml.Linq/tests/events/project.json b/src/System.Private.Xml.Linq/tests/events/project.json
deleted file mode 100644
index 8956c4a7a5..0000000000
--- a/src/System.Private.Xml.Linq/tests/events/project.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Globalization": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj b/src/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj
index 026f4fdece..ab6a3b8f56 100644
--- a/src/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/misc/System.Xml.Linq.Misc.Tests.csproj
@@ -33,8 +33,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/misc/project.json b/src/System.Private.Xml.Linq/tests/misc/project.json
deleted file mode 100644
index 0350e7295c..0000000000
--- a/src/System.Private.Xml.Linq/tests/misc/project.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj b/src/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj
index 08754d63f1..17ef804c91 100644
--- a/src/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/xNodeBuilder/System.Xml.Linq.xNodeBuilder.Tests.csproj
@@ -36,8 +36,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/xNodeBuilder/project.json b/src/System.Private.Xml.Linq/tests/xNodeBuilder/project.json
deleted file mode 100644
index d1bdab560a..0000000000
--- a/src/System.Private.Xml.Linq/tests/xNodeBuilder/project.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Globalization": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Reflection": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Text.Encoding": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}
diff --git a/src/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj b/src/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj
index 8142e8b719..19b30ada03 100644
--- a/src/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj
+++ b/src/System.Private.Xml.Linq/tests/xNodeReader/System.Xml.Linq.xNodeReader.Tests.csproj
@@ -44,8 +44,5 @@
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
- <ItemGroup>
- <None Include="project.json" />
- </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Private.Xml.Linq/tests/xNodeReader/project.json b/src/System.Private.Xml.Linq/tests/xNodeReader/project.json
deleted file mode 100644
index 4ff330d9fa..0000000000
--- a/src/System.Private.Xml.Linq/tests/xNodeReader/project.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.2.0-beta-24617-03",
- "System.Collections": "4.4.0-beta-24617-03",
- "System.Collections.NonGeneric": "4.4.0-beta-24617-03",
- "System.IO": "4.4.0-beta-24617-03",
- "System.Linq": "4.4.0-beta-24617-03",
- "System.Linq.Expressions": "4.4.0-beta-24617-03",
- "System.ObjectModel": "4.4.0-beta-24617-03",
- "System.Runtime": "4.4.0-beta-24617-03",
- "System.Runtime.Extensions": "4.4.0-beta-24617-03",
- "System.Text.Encoding": "4.4.0-beta-24617-03",
- "System.Threading.Tasks": "4.4.0-beta-24617-03",
- "System.Xml.ReaderWriter": "4.4.0-beta-24617-03",
- "System.Xml.XDocument": "4.4.0-beta-24617-03",
- "test-runtime": {
- "target": "project",
- "exclude": "compile"
- },
- "Microsoft.xunit.netcore.extensions": "1.0.0-prerelease-00830-02",
- "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00830-02"
- },
- "frameworks": {
- "netstandard1.3": {}
- },
- "supports": {
- "coreFx.Test.netcore50": {},
- "coreFx.Test.netcoreapp1.0": {},
- "coreFx.Test.net46": {},
- "coreFx.Test.net461": {},
- "coreFx.Test.net462": {},
- "coreFx.Test.net463": {}
- }
-}