From 6ab4a3967131eb52d7884eb0f6fae5d55dfdf1ca Mon Sep 17 00:00:00 2001 From: Xavier Decoster Date: Thu, 21 May 2015 17:15:08 +0200 Subject: [PATCH] upgrade to xunit 2.0.0 --- .nuget/README.md | 3 -- .nuget/packages.config | 2 +- NuGetGallery.sln.DotSettings | 3 +- build/NuGetGallery.xunit.targets | 4 +- .../NuGetGallery.Backend.csproj | 10 ++--- src/NuGetGallery.Backend/packages.config | 2 +- .../NuGetGallery.Core.csproj | 10 ++--- src/NuGetGallery.Core/packages.config | 2 +- .../NuGetGallery.Operations.csproj | 12 +++--- src/NuGetGallery.Operations/packages.config | 2 +- src/NuGetGallery/NuGetGallery.csproj | 10 ++--- src/NuGetGallery/packages.config | 2 +- src/galops/galops.csproj | 10 ++--- src/galops/packages.config | 2 +- .../NuGetGallery.Core.Facts.csproj | 27 ++++++++----- .../Packaging/NupkgFacts.cs | 7 ++-- tests/NuGetGallery.Core.Facts/packages.config | 10 +++-- .../NormalizeVersionInterceptorFacts.cs | 15 +++---- .../Framework/TestContainer.cs | 12 ++---- .../Infrastructure/PackageIndexEntityFacts.cs | 30 +++++++------- .../NuGetGallery.Facts.csproj | 23 ++++++----- .../NuGetGallery.Facts.csproj.DotSettings | 2 + .../SemanticVersionExtensionsFacts.cs | 7 +--- .../CloudBlobFileStorageServiceFacts.cs | 9 ++--- .../FileSystemFileStorageServiceFacts.cs | 39 +++++++++--------- .../Services/PackageServiceFacts.cs | 40 +++++++------------ tests/NuGetGallery.Facts/packages.config | 10 +++-- ...uGetGallery.FunctionalTests.Helpers.csproj | 8 ++-- .../packages.config | 2 +- .../NuGetGallery.FunctionalTests.csproj | 10 ++--- .../packages.config | 2 +- 31 files changed, 162 insertions(+), 165 deletions(-) delete mode 100644 .nuget/README.md create mode 100644 tests/NuGetGallery.Facts/NuGetGallery.Facts.csproj.DotSettings diff --git a/.nuget/README.md b/.nuget/README.md deleted file mode 100644 index b6e91a3aac..0000000000 --- a/.nuget/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# NuGet Package Restore Support - -Support files for NuGet Package Restore. \ No newline at end of file diff --git a/.nuget/packages.config b/.nuget/packages.config index 35a2667d56..4e9a928126 100644 --- a/.nuget/packages.config +++ b/.nuget/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/NuGetGallery.sln.DotSettings b/NuGetGallery.sln.DotSettings index f7e7708903..a9a1077374 100644 --- a/NuGetGallery.sln.DotSettings +++ b/NuGetGallery.sln.DotSettings @@ -1,3 +1,4 @@  Copyright (c) .NET Foundation. All rights reserved. -Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. \ No newline at end of file +Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + AUTO \ No newline at end of file diff --git a/build/NuGetGallery.xunit.targets b/build/NuGetGallery.xunit.targets index 0dbc0dcab5..9da6378bc4 100644 --- a/build/NuGetGallery.xunit.targets +++ b/build/NuGetGallery.xunit.targets @@ -1,6 +1,6 @@ - + @@ -11,6 +11,6 @@ - + \ No newline at end of file diff --git a/src/NuGetGallery.Backend/NuGetGallery.Backend.csproj b/src/NuGetGallery.Backend/NuGetGallery.Backend.csproj index 83960eda39..2a3a02aaf1 100644 --- a/src/NuGetGallery.Backend/NuGetGallery.Backend.csproj +++ b/src/NuGetGallery.Backend/NuGetGallery.Backend.csproj @@ -1,6 +1,6 @@  - + Debug AnyCPU @@ -14,7 +14,7 @@ v4.5 512 Worker - 0a1c5a02 + c4645ea7 true @@ -142,8 +142,8 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - + \ No newline at end of file diff --git a/src/NuGetGallery.Backend/packages.config b/src/NuGetGallery.Backend/packages.config index 05a0a77797..fa8063fd67 100644 --- a/src/NuGetGallery.Backend/packages.config +++ b/src/NuGetGallery.Backend/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/NuGetGallery.Core/NuGetGallery.Core.csproj b/src/NuGetGallery.Core/NuGetGallery.Core.csproj index 366f5c8cf9..ba94bc0093 100644 --- a/src/NuGetGallery.Core/NuGetGallery.Core.csproj +++ b/src/NuGetGallery.Core/NuGetGallery.Core.csproj @@ -1,6 +1,6 @@  - + Debug @@ -12,7 +12,7 @@ NuGetGallery.Core v4.5 512 - b8175cb6 + c8016e0a true @@ -147,8 +147,8 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - + \ No newline at end of file diff --git a/src/NuGetGallery.Core/packages.config b/src/NuGetGallery.Core/packages.config index d73156ad27..1157f7331a 100644 --- a/src/NuGetGallery.Core/packages.config +++ b/src/NuGetGallery.Core/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/NuGetGallery.Operations/NuGetGallery.Operations.csproj b/src/NuGetGallery.Operations/NuGetGallery.Operations.csproj index d3c57f4547..041ba99cc9 100644 --- a/src/NuGetGallery.Operations/NuGetGallery.Operations.csproj +++ b/src/NuGetGallery.Operations/NuGetGallery.Operations.csproj @@ -1,6 +1,6 @@  - + Debug AnyCPU @@ -14,8 +14,8 @@ v4.5 512 - 946c4ba1 - true + 9ca5ec3b + true true @@ -379,10 +379,10 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - + \ No newline at end of file diff --git a/src/NuGetGallery.Operations/packages.config b/src/NuGetGallery.Operations/packages.config index ec96eda504..3c92425621 100644 --- a/src/NuGetGallery.Operations/packages.config +++ b/src/NuGetGallery.Operations/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/NuGetGallery/NuGetGallery.csproj b/src/NuGetGallery/NuGetGallery.csproj index 799f697b26..8a3bfe64ce 100644 --- a/src/NuGetGallery/NuGetGallery.csproj +++ b/src/NuGetGallery/NuGetGallery.csproj @@ -1,6 +1,6 @@  - + Debug @@ -34,7 +34,7 @@ disabled false 0 - 061576ae + 001c21d7 true @@ -1501,13 +1501,12 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - @@ -1516,4 +1515,5 @@ + \ No newline at end of file diff --git a/src/NuGetGallery/packages.config b/src/NuGetGallery/packages.config index eeb5999c15..6cc262d4c3 100644 --- a/src/NuGetGallery/packages.config +++ b/src/NuGetGallery/packages.config @@ -61,7 +61,7 @@ - + diff --git a/src/galops/galops.csproj b/src/galops/galops.csproj index d1430f42c9..39fd71bd28 100644 --- a/src/galops/galops.csproj +++ b/src/galops/galops.csproj @@ -1,6 +1,6 @@  - + Debug x86 @@ -15,7 +15,7 @@ 512 - 23fbd333 + f4c8254d true @@ -103,8 +103,8 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - + \ No newline at end of file diff --git a/src/galops/packages.config b/src/galops/packages.config index 7077cf06af..e03c3cbdde 100644 --- a/src/galops/packages.config +++ b/src/galops/packages.config @@ -5,7 +5,7 @@ - + diff --git a/tests/NuGetGallery.Core.Facts/NuGetGallery.Core.Facts.csproj b/tests/NuGetGallery.Core.Facts/NuGetGallery.Core.Facts.csproj index 6e500ac7e8..ae86581490 100644 --- a/tests/NuGetGallery.Core.Facts/NuGetGallery.Core.Facts.csproj +++ b/tests/NuGetGallery.Core.Facts/NuGetGallery.Core.Facts.csproj @@ -1,6 +1,8 @@  - + + + Debug AnyCPU @@ -15,7 +17,7 @@ 512 true - 11e46af7 + 69a2ed2c true @@ -83,11 +85,14 @@ - - ..\..\packages\xunit.1.9.2\lib\net20\xunit.dll + + ..\..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll - - ..\..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll + + ..\..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll + + + ..\..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll @@ -118,11 +123,13 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + + + - -