From eb64949e51a6cf0c1681afc4fc39404a99d011b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Thu, 29 Jan 2026 20:22:35 +0100 Subject: [PATCH 1/3] Update SDK and VS --- eng/templates/default-build.yml | 2 +- global.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/templates/default-build.yml b/eng/templates/default-build.yml index 7000a4dad..fc85cafc5 100644 --- a/eng/templates/default-build.yml +++ b/eng/templates/default-build.yml @@ -8,7 +8,7 @@ jobs: ${{ if eq(variables['System.TeamProject'], 'public') }}: pool: name: NetCore-Svc-Public - demands: ImageOverride -equals windows.vs2019.amd64.open + demands: ImageOverride -equals 1es-windows-2022-open timeoutInMinutes: 30 strategy: diff --git a/global.json b/global.json index 0f75e8a6f..fa8b53441 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.405", + "version": "8.0.413", "rollForward": "major" } } From a37b87a120d98d8898dfc4c37c43f9bfe0c9a3b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 30 Jan 2026 17:32:36 +0100 Subject: [PATCH 2/3] Update check for VS --- build.cmd | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/build.cmd b/build.cmd index 5802269fe..4ec60eb24 100644 --- a/build.cmd +++ b/build.cmd @@ -6,7 +6,7 @@ mkdir bin :Build -REM Require VS2019 (v16.0) on the system. Use `vswhere` for the search because it can find all VS installations. +REM Require Visual Studio on the system. Use `vswhere` for the search because it can find all VS installations. set vswhere="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" if not exist %vswhere% ( set vswhere="%ProgramFiles%\Microsoft Visual Studio\Installer\vswhere.exe" @@ -23,54 +23,19 @@ if not exist %vswhere% ( ) set InstallDir= -for /f "usebackq tokens=*" %%i in (`%vswhere% -version 16 -latest -prerelease -products * ^ - -requires Microsoft.Net.Component.4.5.TargetingPack ^ - -requires Microsoft.Net.Component.4.5.2.TargetingPack ^ - -requires Microsoft.Net.Component.4.6.2.TargetingPack ^ +for /f "usebackq tokens=*" %%i in (`%vswhere% -latest -prerelease -products * ^ -property installationPath`) do ( set "InstallDir=%%i" ) if not DEFINED InstallDir ( - echo "Could not find a VS2019 installation with the necessary components (targeting packs for v4.5, v4.5.2, and v4.6.2)." - echo Please install VS2019 or the missing components. + echo "Could not find a Visual Studio installation." + echo Please install Visual Studio or the missing components. goto BuildFail ) -REM Find a 64bit MSBuild and add it to path. Require v17.4 or later due to our .NET SDK choice. -REM Check for VS2022 first. -set InstallDir= -for /f "usebackq tokens=*" %%i in (`%vswhere% -version 17.4 -latest -prerelease -products * ^ - -requires Microsoft.Component.MSBuild ^ - -property installationPath`) do ( - set "InstallDir=%%i" -) - -if DEFINED InstallDir ( - REM Add MSBuild to the path. - set "PATH=%InstallDir%\MSBuild\Current\Bin;%PATH%" - goto FoundMSBuild -) - -REM Otherwise find or install an xcopy-able MSBuild. -echo "Could not find a VS2022 installation with the necessary components (MSBuild). Falling back..." - -set "MSBuildVersion=17.4.1" -set "Command=[System.Threading.Thread]::CurrentThread.CurrentCulture = ''" -set "Command=%Command%; [System.Threading.Thread]::CurrentThread.CurrentUICulture = ''" -set "Command=%Command%; try { & '%~dp0eng\GetXCopyMSBuild.ps1' %MSBuildVersion%; exit $LASTEXITCODE }" -set "Command=%Command% catch { write-host $_; exit 1 }" -PowerShell -NoProfile -NoLogo -ExecutionPolicy Bypass -Command "%Command%" -if %ERRORLEVEL% neq 0 goto BuildFail - REM Add MSBuild to the path. -set "PATH=%~dp0.msbuild\%MSBuildVersion%\tools\MSBuild\Current\Bin;%PATH%" - -:FoundMSBuild -REM Configure NuGet operations to work w/in this repo i.e. do not pollute system packages folder. -REM Note this causes two copies of packages restored using packages.config to land in this folder e.g. -REM StyleCpy.5.0.0/ and stylecop/5.0.0/. -set "NUGET_PACKAGES=%~dp0packages" +set "PATH=%InstallDir%\MSBuild\Current\Bin;%PATH%" REM Are we running in a local dev environment (not on CI)? if DEFINED CI (set Desktop=false) else if DEFINED TEAMCITY_VERSION (set Desktop=false) else (set Desktop=true) From 1c67cc37b72bba1fdb332e277a9cdfd2942e7872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 30 Jan 2026 17:32:36 +0100 Subject: [PATCH 3/3] Migrate to PackageReference --- .nuget/packages.config | 2 +- Directory.Build.props | 6 ++ Runtime.msbuild | 8 +- eng/templates/default-build.yml | 5 + packages/repositories.config | 42 -------- .../Microsoft.AspNet.Facebook.csproj | 20 ++-- src/Microsoft.AspNet.Facebook/packages.config | 6 -- .../Microsoft.Web.Helpers.csproj | 8 +- src/Microsoft.Web.Helpers/packages.config | 4 - .../Microsoft.Web.WebPages.OAuth.csproj | 37 ++------ .../packages.config | 9 -- .../System.Net.Http.Formatting.csproj | 43 ++------- .../packages.config | 9 -- .../System.Web.Http.Owin.csproj | 16 +--- src/System.Web.Http.Owin/packages.config | 5 - .../System.Web.Http.SignalR.csproj | 16 +--- src/System.Web.Http.SignalR/packages.config | 5 - .../System.Web.Http.Tracing.csproj | 12 +-- src/System.Web.Http.Tracing/packages.config | 4 - .../System.Web.Http.WebHost.csproj | 8 +- src/System.Web.Http.WebHost/packages.config | 4 - src/System.Web.Http/System.Web.Http.csproj | 12 +-- src/System.Web.Http/packages.config | 4 - src/System.Web.Mvc/System.Web.Mvc.csproj | 8 +- src/System.Web.Mvc/packages.config | 4 - .../System.Web.WebPages.Administration.csproj | 13 +-- .../packages.config | 5 - .../System.Web.WebPages.Deployment.csproj | 9 +- .../packages.config | 4 - .../System.Web.WebPages.csproj | 7 +- src/System.Web.WebPages/packages.config | 4 - src/WebApiHelpPage/VB/WebApiHelpPageVB.vbproj | 12 +-- src/WebApiHelpPage/VB/packages.config | 5 - src/WebApiHelpPage/WebApiHelpPage.csproj | 12 +-- src/WebApiHelpPage/packages.config | 5 - test/Directory.Build.props | 10 ++ test/Directory.Build.targets | 2 - .../Microsoft.AspNet.Facebook.Test.csproj | 54 +---------- .../packages.config | 15 --- .../Microsoft.Web.Helpers.Test.csproj | 44 +-------- .../packages.config | 13 --- .../Microsoft.Web.Mvc.Test.csproj | 51 +--------- test/Microsoft.Web.Mvc.Test/packages.config | 14 --- .../Microsoft.Web.WebPages.OAuth.Test.csproj | 78 ++------------- .../packages.config | 19 ---- .../System.Net.Http.Formatting.Test.csproj | 95 +++---------------- .../packages.config | 20 ---- .../System.Web.Cors.Test.csproj | 45 +-------- test/System.Web.Cors.Test/packages.config | 13 --- .../System.Web.Helpers.Test.csproj | 45 +-------- test/System.Web.Helpers.Test/packages.config | 13 --- .../System.Web.Http.Cors.Test.csproj | 51 +--------- .../System.Web.Http.Cors.Test/packages.config | 14 --- .../System.Web.Http.Integration.Test.csproj | 52 +--------- .../packages.config | 14 --- .../System.Web.Http.Owin.Test.csproj | 70 ++------------ .../System.Web.Http.Owin.Test/packages.config | 18 ---- .../System.Web.Http.SelfHost.Test.csproj | 52 +--------- .../packages.config | 14 --- .../System.Web.Http.SignalR.Test.csproj | 56 +---------- .../packages.config | 15 --- .../System.Web.Http.Test.csproj | 52 +--------- test/System.Web.Http.Test/packages.config | 14 --- .../System.Web.Http.Tracing.Test.csproj | 44 +-------- .../packages.config | 12 --- .../System.Web.Http.WebHost.Test.csproj | 52 +--------- .../packages.config | 14 --- .../System.Web.Mvc.Test.csproj | 51 +--------- test/System.Web.Mvc.Test/packages.config | 14 --- .../System.Web.Razor.Test.csproj | 41 +------- test/System.Web.Razor.Test/packages.config | 12 --- ...em.Web.WebPages.Administration.Test.csproj | 52 +--------- .../packages.config | 14 --- ...System.Web.WebPages.Deployment.Test.csproj | 35 +------ .../packages.config | 11 --- .../System.Web.WebPages.Razor.Test.csproj | 43 +-------- .../packages.config | 13 --- .../System.Web.WebPages.Test.csproj | 42 +------- test/System.Web.WebPages.Test/packages.config | 13 --- .../WebApiHelpPage.Test.csproj | 55 +---------- test/WebApiHelpPage.Test/packages.config | 15 --- .../WebApiHelpPage.VB.Test.csproj | 55 +---------- .../WebMatrix.Data.Test.csproj | 45 +-------- test/WebMatrix.Data.Test/packages.config | 13 --- .../WebMatrix.WebData.Test.csproj | 44 +-------- test/WebMatrix.WebData.Test/packages.config | 13 --- 86 files changed, 194 insertions(+), 1835 deletions(-) delete mode 100644 packages/repositories.config delete mode 100644 src/Microsoft.AspNet.Facebook/packages.config delete mode 100644 src/Microsoft.Web.Helpers/packages.config delete mode 100644 src/Microsoft.Web.WebPages.OAuth/packages.config delete mode 100644 src/System.Net.Http.Formatting/packages.config delete mode 100644 src/System.Web.Http.Owin/packages.config delete mode 100644 src/System.Web.Http.SignalR/packages.config delete mode 100644 src/System.Web.Http.Tracing/packages.config delete mode 100644 src/System.Web.Http.WebHost/packages.config delete mode 100644 src/System.Web.Http/packages.config delete mode 100644 src/System.Web.Mvc/packages.config delete mode 100644 src/System.Web.WebPages.Administration/packages.config delete mode 100644 src/System.Web.WebPages.Deployment/packages.config delete mode 100644 src/System.Web.WebPages/packages.config delete mode 100644 src/WebApiHelpPage/VB/packages.config delete mode 100644 src/WebApiHelpPage/packages.config delete mode 100644 test/Microsoft.AspNet.Facebook.Test/packages.config delete mode 100644 test/Microsoft.Web.Helpers.Test/packages.config delete mode 100644 test/Microsoft.Web.Mvc.Test/packages.config delete mode 100644 test/Microsoft.Web.WebPages.OAuth.Test/packages.config delete mode 100644 test/System.Net.Http.Formatting.Test/packages.config delete mode 100644 test/System.Web.Cors.Test/packages.config delete mode 100644 test/System.Web.Helpers.Test/packages.config delete mode 100644 test/System.Web.Http.Cors.Test/packages.config delete mode 100644 test/System.Web.Http.Integration.Test/packages.config delete mode 100644 test/System.Web.Http.Owin.Test/packages.config delete mode 100644 test/System.Web.Http.SelfHost.Test/packages.config delete mode 100644 test/System.Web.Http.SignalR.Test/packages.config delete mode 100644 test/System.Web.Http.Test/packages.config delete mode 100644 test/System.Web.Http.Tracing.Test/packages.config delete mode 100644 test/System.Web.Http.WebHost.Test/packages.config delete mode 100644 test/System.Web.Mvc.Test/packages.config delete mode 100644 test/System.Web.Razor.Test/packages.config delete mode 100644 test/System.Web.WebPages.Administration.Test/packages.config delete mode 100644 test/System.Web.WebPages.Deployment.Test/packages.config delete mode 100644 test/System.Web.WebPages.Razor.Test/packages.config delete mode 100644 test/System.Web.WebPages.Test/packages.config delete mode 100644 test/WebApiHelpPage.Test/packages.config delete mode 100644 test/WebMatrix.Data.Test/packages.config delete mode 100644 test/WebMatrix.WebData.Test/packages.config diff --git a/.nuget/packages.config b/.nuget/packages.config index a8fe9612a..91e788438 100644 --- a/.nuget/packages.config +++ b/.nuget/packages.config @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/Directory.Build.props b/Directory.Build.props index fef50e3d3..2f0444888 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -11,6 +11,12 @@ true false + + false + + + + diff --git a/Runtime.msbuild b/Runtime.msbuild index 815aaf93e..e96a785a5 100644 --- a/Runtime.msbuild +++ b/Runtime.msbuild @@ -56,7 +56,7 @@ <_Testing_NetStandard1_3 Include="true;false" /> - + + + @@ -95,7 +99,6 @@ - @@ -105,7 +108,4 @@ - - - \ No newline at end of file diff --git a/src/Microsoft.Web.Helpers/packages.config b/src/Microsoft.Web.Helpers/packages.config deleted file mode 100644 index 98ba55d37..000000000 --- a/src/Microsoft.Web.Helpers/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/Microsoft.Web.WebPages.OAuth/Microsoft.Web.WebPages.OAuth.csproj b/src/Microsoft.Web.WebPages.OAuth/Microsoft.Web.WebPages.OAuth.csproj index dd376220f..82eed87e5 100644 --- a/src/Microsoft.Web.WebPages.OAuth/Microsoft.Web.WebPages.OAuth.csproj +++ b/src/Microsoft.Web.WebPages.OAuth/Microsoft.Web.WebPages.OAuth.csproj @@ -16,30 +16,15 @@ - - False - ..\..\packages\DotNetOpenAuth.AspNet.4.0.3.12153\lib\net40-full\DotNetOpenAuth.AspNet.dll - - - False - ..\..\packages\DotNetOpenAuth.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.Core.dll - - - False - ..\..\packages\DotNetOpenAuth.OAuth.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OAuth.dll - - - False - ..\..\packages\DotNetOpenAuth.OAuth.Consumer.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OAuth.Consumer.dll - - - False - ..\..\packages\DotNetOpenAuth.OpenId.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OpenId.dll - - - False - ..\..\packages\DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OpenId.RelyingParty.dll - + + + + + + + + + @@ -108,9 +93,7 @@ OAuthResources.Designer.cs - - - + + + + @@ -65,7 +66,6 @@ - @@ -169,7 +169,4 @@ - - - \ No newline at end of file diff --git a/src/System.Web.WebPages.Administration/packages.config b/src/System.Web.WebPages.Administration/packages.config deleted file mode 100644 index fa456c98a..000000000 --- a/src/System.Web.WebPages.Administration/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/System.Web.WebPages.Deployment/System.Web.WebPages.Deployment.csproj b/src/System.Web.WebPages.Deployment/System.Web.WebPages.Deployment.csproj index 0b7ca069c..764092adb 100644 --- a/src/System.Web.WebPages.Deployment/System.Web.WebPages.Deployment.csproj +++ b/src/System.Web.WebPages.Deployment/System.Web.WebPages.Deployment.csproj @@ -13,9 +13,9 @@ 1591 - - ..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll - + + + @@ -67,8 +67,5 @@ - - - \ No newline at end of file diff --git a/src/System.Web.WebPages.Deployment/packages.config b/src/System.Web.WebPages.Deployment/packages.config deleted file mode 100644 index 21007718e..000000000 --- a/src/System.Web.WebPages.Deployment/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/System.Web.WebPages/System.Web.WebPages.csproj b/src/System.Web.WebPages/System.Web.WebPages.csproj index 26f25375b..fde69532e 100644 --- a/src/System.Web.WebPages/System.Web.WebPages.csproj +++ b/src/System.Web.WebPages/System.Web.WebPages.csproj @@ -13,11 +13,11 @@ $(DefineConstants);ASPNETWEBPAGES 1591 + + + - - ..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll - @@ -253,7 +253,6 @@ TextTemplatingFileGenerator PageExecutionListenerAdapter.generated.cs - diff --git a/src/System.Web.WebPages/packages.config b/src/System.Web.WebPages/packages.config deleted file mode 100644 index 21007718e..000000000 --- a/src/System.Web.WebPages/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/WebApiHelpPage/VB/WebApiHelpPageVB.vbproj b/src/WebApiHelpPage/VB/WebApiHelpPageVB.vbproj index 8ecb16787..93cd64546 100644 --- a/src/WebApiHelpPage/VB/WebApiHelpPageVB.vbproj +++ b/src/WebApiHelpPage/VB/WebApiHelpPageVB.vbproj @@ -42,11 +42,10 @@ On - - ..\..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - False - False - + + + + @@ -99,9 +98,6 @@ - - Designer - diff --git a/src/WebApiHelpPage/VB/packages.config b/src/WebApiHelpPage/VB/packages.config deleted file mode 100644 index 03c4ef519..000000000 --- a/src/WebApiHelpPage/VB/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/WebApiHelpPage/WebApiHelpPage.csproj b/src/WebApiHelpPage/WebApiHelpPage.csproj index be06fa908..f46150b1d 100644 --- a/src/WebApiHelpPage/WebApiHelpPage.csproj +++ b/src/WebApiHelpPage/WebApiHelpPage.csproj @@ -15,11 +15,10 @@ 1591 - - ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - False - False - + + + + @@ -86,9 +85,6 @@ - - Designer - diff --git a/src/WebApiHelpPage/packages.config b/src/WebApiHelpPage/packages.config deleted file mode 100644 index 6046c1be3..000000000 --- a/src/WebApiHelpPage/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/test/Directory.Build.props b/test/Directory.Build.props index c55ba298d..176ac6dec 100644 --- a/test/Directory.Build.props +++ b/test/Directory.Build.props @@ -9,4 +9,14 @@ '$(MSBuildProjectName)' != 'System.Net.Http.Formatting.ns1_3.Test' AND '$(MSBuildProjectName)' != 'System.Net.Http.Formatting.ns2_0.Test' ">v4.6.2 + + + + + + + + diff --git a/test/Directory.Build.targets b/test/Directory.Build.targets index 99772c023..14fe33ad6 100644 --- a/test/Directory.Build.targets +++ b/test/Directory.Build.targets @@ -1,7 +1,5 @@ - diff --git a/test/Microsoft.AspNet.Facebook.Test/Microsoft.AspNet.Facebook.Test.csproj b/test/Microsoft.AspNet.Facebook.Test/Microsoft.AspNet.Facebook.Test.csproj index bedf43f90..ea547dab7 100644 --- a/test/Microsoft.AspNet.Facebook.Test/Microsoft.AspNet.Facebook.Test.csproj +++ b/test/Microsoft.AspNet.Facebook.Test/Microsoft.AspNet.Facebook.Test.csproj @@ -1,7 +1,5 @@ - + - - {C3BEF382-C7C4-454D-B017-1EAC03E9A82C} @@ -10,47 +8,18 @@ Microsoft.AspNet.Facebook.Test Microsoft.AspNet.Facebook.Test ..\..\bin\$(Configuration)\Test\ - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - ..\..\packages\Facebook.6.4.2\lib\net45\Facebook.dll - + + + + - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - True - - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -81,7 +50,6 @@ Designer - @@ -128,19 +96,7 @@ - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - false - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - + + + - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - @@ -36,22 +24,6 @@ - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -152,23 +124,8 @@ System.Web.Mvc.Test - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/Microsoft.Web.Mvc.Test/packages.config b/test/Microsoft.Web.Mvc.Test/packages.config deleted file mode 100644 index 72e333be0..000000000 --- a/test/Microsoft.Web.Mvc.Test/packages.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/Microsoft.Web.WebPages.OAuth.Test/Microsoft.Web.WebPages.OAuth.Test.csproj b/test/Microsoft.Web.WebPages.OAuth.Test/Microsoft.Web.WebPages.OAuth.Test.csproj index 5985200ea..2ffd0e884 100644 --- a/test/Microsoft.Web.WebPages.OAuth.Test/Microsoft.Web.WebPages.OAuth.Test.csproj +++ b/test/Microsoft.Web.WebPages.OAuth.Test/Microsoft.Web.WebPages.OAuth.Test.csproj @@ -1,7 +1,5 @@ - + - - {694C6EDF-EA52-438F-B745-82B025ECC0E7} @@ -10,62 +8,21 @@ Microsoft.Web.WebPages.OAuth.Test Microsoft.Web.WebPages.OAuth.Test ..\..\bin\$(Configuration)\Test\ - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - False - ..\..\packages\DotNetOpenAuth.AspNet.4.0.3.12153\lib\net40-full\DotNetOpenAuth.AspNet.dll - - - False - ..\..\packages\DotNetOpenAuth.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.Core.dll - - - False - ..\..\packages\DotNetOpenAuth.OAuth.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OAuth.dll - - - False - ..\..\packages\DotNetOpenAuth.OAuth.Consumer.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OAuth.Consumer.dll - - - False - ..\..\packages\DotNetOpenAuth.OpenId.Core.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OpenId.dll - - - False - ..\..\packages\DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153\lib\net40-full\DotNetOpenAuth.OpenId.RelyingParty.dll - - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - + + + + + + + + + - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -73,9 +30,6 @@ - - - {4CBFC7D3-1600-4CE5-BC6B-AC7BC2D6F853} @@ -89,19 +43,7 @@ - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - 0618 - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - + + + - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - @@ -40,22 +28,6 @@ - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -401,9 +373,6 @@ System.Web.Razor.Test - - - @@ -413,17 +382,5 @@ Resources.Designer.cs - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.Mvc.Test/packages.config b/test/System.Web.Mvc.Test/packages.config deleted file mode 100644 index 72e333be0..000000000 --- a/test/System.Web.Mvc.Test/packages.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/System.Web.Razor.Test/System.Web.Razor.Test.csproj b/test/System.Web.Razor.Test/System.Web.Razor.Test.csproj index a7692dba7..04451ba19 100644 --- a/test/System.Web.Razor.Test/System.Web.Razor.Test.csproj +++ b/test/System.Web.Razor.Test/System.Web.Razor.Test.csproj @@ -1,7 +1,5 @@ - + - - {0BB62A1D-E6B5-49FA-9E3C-6AF679A66DFE} @@ -11,41 +9,14 @@ System.Web.Razor.Test ..\..\bin\$(Configuration)\Test\ 0618 - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - 3.5 - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - - @@ -409,7 +380,6 @@ - @@ -477,13 +447,4 @@ - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.Razor.Test/packages.config b/test/System.Web.Razor.Test/packages.config deleted file mode 100644 index bfeba10c8..000000000 --- a/test/System.Web.Razor.Test/packages.config +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/test/System.Web.WebPages.Administration.Test/System.Web.WebPages.Administration.Test.csproj b/test/System.Web.WebPages.Administration.Test/System.Web.WebPages.Administration.Test.csproj index ab0bf5a29..a9ee8153f 100644 --- a/test/System.Web.WebPages.Administration.Test/System.Web.WebPages.Administration.Test.csproj +++ b/test/System.Web.WebPages.Administration.Test/System.Web.WebPages.Administration.Test.csproj @@ -1,7 +1,5 @@ - + - - {21C729D6-ECF8-47EF-A236-7C6A4272EAF0} @@ -10,23 +8,12 @@ System.Web.WebPages.Administration.Test System.Web.WebPages.Administration.Test ..\..\bin\$(Configuration)\Test\ - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - + + + - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - True - ..\..\packages\Nuget.Core.1.6.2\lib\net40\NuGet.Core.dll - @@ -35,22 +22,6 @@ - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -85,23 +56,8 @@ - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.WebPages.Administration.Test/packages.config b/test/System.Web.WebPages.Administration.Test/packages.config deleted file mode 100644 index 36316d888..000000000 --- a/test/System.Web.WebPages.Administration.Test/packages.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/System.Web.WebPages.Deployment.Test/System.Web.WebPages.Deployment.Test.csproj b/test/System.Web.WebPages.Deployment.Test/System.Web.WebPages.Deployment.Test.csproj index 943c9d22e..8454dd555 100644 --- a/test/System.Web.WebPages.Deployment.Test/System.Web.WebPages.Deployment.Test.csproj +++ b/test/System.Web.WebPages.Deployment.Test/System.Web.WebPages.Deployment.Test.csproj @@ -1,7 +1,5 @@ - + - - {268DEE9D-F323-4A00-8ED8-3784388C3E3A} @@ -10,29 +8,11 @@ System.Web.WebPages.Deployment.Test System.Web.WebPages.Deployment.Test ..\..\bin\$(Configuration)\Test\ - - - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -62,7 +42,6 @@ - @@ -83,17 +62,5 @@ - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.WebPages.Deployment.Test/packages.config b/test/System.Web.WebPages.Deployment.Test/packages.config deleted file mode 100644 index e4e4b1120..000000000 --- a/test/System.Web.WebPages.Deployment.Test/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/test/System.Web.WebPages.Razor.Test/System.Web.WebPages.Razor.Test.csproj b/test/System.Web.WebPages.Razor.Test/System.Web.WebPages.Razor.Test.csproj index da5bfc7b7..a8f686b82 100644 --- a/test/System.Web.WebPages.Razor.Test/System.Web.WebPages.Razor.Test.csproj +++ b/test/System.Web.WebPages.Razor.Test/System.Web.WebPages.Razor.Test.csproj @@ -1,7 +1,5 @@ - + - - {66A74F3C-A106-4C1E-BAA0-001908FEA2CA} @@ -12,8 +10,6 @@ ..\..\bin\$(Configuration)\Test\ 0618 - - @@ -23,34 +19,10 @@ - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -74,22 +46,9 @@ Designer - - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.WebPages.Razor.Test/packages.config b/test/System.Web.WebPages.Razor.Test/packages.config deleted file mode 100644 index cafc6212c..000000000 --- a/test/System.Web.WebPages.Razor.Test/packages.config +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/System.Web.WebPages.Test/System.Web.WebPages.Test.csproj b/test/System.Web.WebPages.Test/System.Web.WebPages.Test.csproj index fca409a32..427590228 100644 --- a/test/System.Web.WebPages.Test/System.Web.WebPages.Test.csproj +++ b/test/System.Web.WebPages.Test/System.Web.WebPages.Test.csproj @@ -1,7 +1,5 @@ - + - - {0F4870DB-A799-4DBA-99DF-0D74BB52FEC2} @@ -10,18 +8,9 @@ System.Web.WebPages.Test System.Web.WebPages.Test ..\..\bin\$(Configuration)\Test\ - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - @@ -30,22 +19,6 @@ - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -172,7 +145,6 @@ - @@ -182,17 +154,5 @@ - - - - - - This project references NuGet package(s) that are missing on this computer. Use 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/test/System.Web.WebPages.Test/packages.config b/test/System.Web.WebPages.Test/packages.config deleted file mode 100644 index cafc6212c..000000000 --- a/test/System.Web.WebPages.Test/packages.config +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/WebApiHelpPage.Test/WebApiHelpPage.Test.csproj b/test/WebApiHelpPage.Test/WebApiHelpPage.Test.csproj index 436b124a7..7cf99655a 100644 --- a/test/WebApiHelpPage.Test/WebApiHelpPage.Test.csproj +++ b/test/WebApiHelpPage.Test/WebApiHelpPage.Test.csproj @@ -1,7 +1,5 @@ - + - - {291EF478-BF24-4935-BC78-E0DCCD0C9A1B} @@ -11,22 +9,12 @@ ..\..\bin\$(Configuration)\Test\ $(OutputPath)$(AssemblyName).xml 1591 - - - - ..\..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll - True - - - ..\..\packages\Moq.4.18.4\lib\net462\Moq.dll - True - - - ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll - True - + + + + @@ -40,22 +28,6 @@ - - ..\..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll - True - - - ..\..\packages\xunit.assert.2.4.2\lib\netstandard1.1\xunit.assert.dll - True - - - ..\..\packages\xunit.extensibility.core.2.4.2\lib\net452\xunit.core.dll - True - - - ..\..\packages\xunit.extensibility.execution.2.4.2\lib\net452\xunit.execution.desktop.dll - True - @@ -76,11 +48,6 @@ - - - Designer - - TestFiles\Web.config @@ -135,19 +102,7 @@ - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - -