From a0ff3566ecbfc475844c1f67061da0af5ab29fde Mon Sep 17 00:00:00 2001 From: angocke Date: Tue, 21 Oct 2014 23:45:23 -0700 Subject: [PATCH] Add full NuGet package restore to Test.cmd and fix Open samples to direct packages up to the solution packages directory. (changeset 1359108) --- Src/.nuget/NuGetRestore.ps1 | 4 + Src/Samples/.nuget/NuGet.Config | 3 + Src/Samples/.nuget/NuGet.targets | 144 ------------------ .../APISampleUnitTestsCS.csproj | 15 +- .../CSharp/AsyncPackage/AsyncPackage.csproj | 19 +-- .../Test/AsyncPackage.Test.csproj | 15 +- .../CSharp/AsyncPackage/packages.config | 8 - .../ConsoleClassifierCS.csproj | 8 +- .../Impl/ConvertToAutoPropertyCS.csproj | 15 +- .../FormatSolution/FormatSolutionCS.csproj | 16 +- .../CSharp/FormatSolution/packages.config | 4 - .../ImplementNotifyPropertyChangedCS.csproj | 15 +- ...ntNotifyPropertyChangedCS.UnitTests.csproj | 17 +-- .../CSharp/MakeConst/Impl/MakeConstCS.csproj | 12 +- .../Test/MakeConstCS.UnitTests.csproj | 17 +-- Src/Samples/Samples.sln | 3 +- .../UnitTestFramework.csproj | 15 +- .../APISampleUnitTestsVB.vbproj | 15 +- .../ConsoleClassifierVB.vbproj | 13 +- .../Impl/ConvertToAutoPropertyVB.vbproj | 15 +- .../ConvertToAutoPropertyVB.UnitTests.vbproj | 18 +-- .../FormatSolution/FormatSolutionVB.vbproj | 18 +-- .../ImplementNotifyPropertyChangedVB.vbproj | 15 +- ...ntNotifyPropertyChangedVB.UnitTests.vbproj | 18 +-- .../MakeConst/Impl/MakeConstVB.vbproj | 12 +- .../Test/MakeConstVB.UnitTests.vbproj | 18 +-- 26 files changed, 73 insertions(+), 399 deletions(-) create mode 100644 Src/.nuget/NuGetRestore.ps1 delete mode 100644 Src/Samples/.nuget/NuGet.targets delete mode 100644 Src/Samples/CSharp/FormatSolution/packages.config diff --git a/Src/.nuget/NuGetRestore.ps1 b/Src/.nuget/NuGetRestore.ps1 new file mode 100644 index 00000000000..c9b10964881 --- /dev/null +++ b/Src/.nuget/NuGetRestore.ps1 @@ -0,0 +1,4 @@ +$NuGetExe = "$PSScriptRoot\NuGet.exe" + +& $NuGetExe restore "$PSScriptRoot\..\Roslyn.sln" +& $NuGetExe restore "$PSScriptRoot\..\Samples\Samples.sln" \ No newline at end of file diff --git a/Src/Samples/.nuget/NuGet.Config b/Src/Samples/.nuget/NuGet.Config index 67f8ea046ef..fc699da1a39 100644 --- a/Src/Samples/.nuget/NuGet.Config +++ b/Src/Samples/.nuget/NuGet.Config @@ -3,4 +3,7 @@ + + + \ No newline at end of file diff --git a/Src/Samples/.nuget/NuGet.targets b/Src/Samples/.nuget/NuGet.targets deleted file mode 100644 index 3f8c37b22cd..00000000000 --- a/Src/Samples/.nuget/NuGet.targets +++ /dev/null @@ -1,144 +0,0 @@ - - - - $(MSBuildProjectDirectory)\..\ - - - false - - - false - - - true - - - false - - - - - - - - - - - $([System.IO.Path]::Combine($(SolutionDir), ".nuget")) - - - - - $(SolutionDir).nuget - - - - $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName.Replace(' ', '_')).config - $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName).config - - - - $(MSBuildProjectDirectory)\packages.config - $(PackagesProjectConfig) - - - - - $(NuGetToolsPath)\NuGet.exe - @(PackageSource) - - "$(NuGetExePath)" - mono --runtime=v4.0.30319 "$(NuGetExePath)" - - $(TargetDir.Trim('\\')) - - -RequireConsent - -NonInteractive - - "$(SolutionDir) " - "$(SolutionDir)" - - - $(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) - $(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols - - - - RestorePackages; - $(BuildDependsOn); - - - - - $(BuildDependsOn); - BuildPackage; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Src/Samples/CSharp/APISampleUnitTests/APISampleUnitTestsCS.csproj b/Src/Samples/CSharp/APISampleUnitTests/APISampleUnitTestsCS.csproj index f8a4560d3d9..603aaa029f6 100644 --- a/Src/Samples/CSharp/APISampleUnitTests/APISampleUnitTestsCS.csproj +++ b/Src/Samples/CSharp/APISampleUnitTests/APISampleUnitTestsCS.csproj @@ -1,7 +1,7 @@  - - + + @@ -12,7 +12,6 @@ 4.0 ..\..\..\ - true @@ -59,7 +58,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -77,13 +76,5 @@ - - - - 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/Samples/CSharp/AsyncPackage/AsyncPackage.csproj b/Src/Samples/CSharp/AsyncPackage/AsyncPackage.csproj index 75f87d13557..8f95e96a764 100644 --- a/Src/Samples/CSharp/AsyncPackage/AsyncPackage.csproj +++ b/Src/Samples/CSharp/AsyncPackage/AsyncPackage.csproj @@ -1,7 +1,7 @@  - - + + @@ -42,7 +42,6 @@ false true ..\..\..\ - true SAK SAK SAK @@ -99,7 +98,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -127,7 +126,7 @@ False - ..\..\packages\System.Reflection.Metadata.1.0.17-beta\lib\portable-net45+win8\System.Reflection.Metadata.dll + ..\..\..\..\packages\System.Reflection.Metadata.1.0.17-beta\lib\portable-net45+win8\System.Reflection.Metadata.dll @@ -146,7 +145,9 @@ - + + Designer + Designer @@ -187,11 +188,6 @@ 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - if exist Diagnostic.nuspec if exist "$(SolutionDir)\.nuget\NuGet.exe" "$(SolutionDir)\.nuget\NuGet.exe" pack Diagnostic.nuspec -NoPackageAnalysis -OutputDirectory . OnOutputUpdated @@ -208,6 +204,5 @@ - \ No newline at end of file diff --git a/Src/Samples/CSharp/AsyncPackage/Test/AsyncPackage.Test.csproj b/Src/Samples/CSharp/AsyncPackage/Test/AsyncPackage.Test.csproj index a7001fbfc49..37385c2aece 100644 --- a/Src/Samples/CSharp/AsyncPackage/Test/AsyncPackage.Test.csproj +++ b/Src/Samples/CSharp/AsyncPackage/Test/AsyncPackage.Test.csproj @@ -1,7 +1,7 @@  - - + + @@ -27,7 +27,6 @@ SAK SAK ..\..\..\ - true true @@ -86,7 +85,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -145,13 +144,5 @@ - - - - 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/Samples/CSharp/AsyncPackage/packages.config b/Src/Samples/CSharp/AsyncPackage/packages.config index 54f2dd31914..5f3a87f863e 100644 --- a/Src/Samples/CSharp/AsyncPackage/packages.config +++ b/Src/Samples/CSharp/AsyncPackage/packages.config @@ -1,13 +1,5 @@  - - - - - - - - diff --git a/Src/Samples/CSharp/ConsoleClassifier/ConsoleClassifierCS.csproj b/Src/Samples/CSharp/ConsoleClassifier/ConsoleClassifierCS.csproj index c314ad0c9c5..e87224a80d5 100644 --- a/Src/Samples/CSharp/ConsoleClassifier/ConsoleClassifierCS.csproj +++ b/Src/Samples/CSharp/ConsoleClassifier/ConsoleClassifierCS.csproj @@ -1,6 +1,6 @@  - + @@ -15,7 +15,6 @@ v4.5 CSharp\ConsoleClassifier ..\..\ - true @@ -53,7 +52,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -68,12 +67,11 @@ - 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/Samples/CSharp/ConvertToAutoProperty/Impl/ConvertToAutoPropertyCS.csproj b/Src/Samples/CSharp/ConvertToAutoProperty/Impl/ConvertToAutoPropertyCS.csproj index 610f6b64a89..9f97d98b132 100644 --- a/Src/Samples/CSharp/ConvertToAutoProperty/Impl/ConvertToAutoPropertyCS.csproj +++ b/Src/Samples/CSharp/ConvertToAutoProperty/Impl/ConvertToAutoPropertyCS.csproj @@ -1,7 +1,7 @@  - - + + @@ -12,7 +12,6 @@ true CSharp\ConvertToAutoProperty ..\..\..\ - true @@ -66,7 +65,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -110,13 +109,5 @@ - - - - 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/Samples/CSharp/FormatSolution/FormatSolutionCS.csproj b/Src/Samples/CSharp/FormatSolution/FormatSolutionCS.csproj index d5db44a4763..ba08854773d 100644 --- a/Src/Samples/CSharp/FormatSolution/FormatSolutionCS.csproj +++ b/Src/Samples/CSharp/FormatSolution/FormatSolutionCS.csproj @@ -1,7 +1,7 @@  - - + + @@ -18,7 +18,6 @@ 512 CSharp\FormatSolution ..\..\ - true @@ -51,7 +50,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -103,14 +102,5 @@ --> - - - - 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/Samples/CSharp/FormatSolution/packages.config b/Src/Samples/CSharp/FormatSolution/packages.config deleted file mode 100644 index 9f072bdfcd9..00000000000 --- a/Src/Samples/CSharp/FormatSolution/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedCS.csproj b/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedCS.csproj index 7a9db09f8d8..07a385147a8 100644 --- a/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedCS.csproj +++ b/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedCS.csproj @@ -1,7 +1,7 @@  - - + + @@ -11,7 +11,6 @@ 4.0 true ..\..\..\ - true @@ -92,7 +91,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -142,13 +141,5 @@ - - - - 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/Samples/CSharp/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedCS.UnitTests.csproj b/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedCS.UnitTests.csproj index e183eadf7ec..531aa79ff03 100644 --- a/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedCS.UnitTests.csproj +++ b/Src/Samples/CSharp/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedCS.UnitTests.csproj @@ -1,7 +1,7 @@  - - + + @@ -16,8 +16,7 @@ Properties ImplementNotifyPropertyChangedCS.UnitTests ImplementNotifyPropertyChangedCS.UnitTests - ..\..\..\..\ - true + ..\..\..\ @@ -64,7 +63,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -81,13 +80,5 @@ - - - - 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/Samples/CSharp/MakeConst/Impl/MakeConstCS.csproj b/Src/Samples/CSharp/MakeConst/Impl/MakeConstCS.csproj index edd8254f1ef..9572408468b 100644 --- a/Src/Samples/CSharp/MakeConst/Impl/MakeConstCS.csproj +++ b/Src/Samples/CSharp/MakeConst/Impl/MakeConstCS.csproj @@ -1,6 +1,6 @@  - + @@ -9,7 +9,6 @@ 4.0 ..\..\..\ - true @@ -67,7 +66,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -110,12 +109,5 @@ - - - - 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/Samples/CSharp/MakeConst/Test/MakeConstCS.UnitTests.csproj b/Src/Samples/CSharp/MakeConst/Test/MakeConstCS.UnitTests.csproj index 4cb04332573..315147142d4 100644 --- a/Src/Samples/CSharp/MakeConst/Test/MakeConstCS.UnitTests.csproj +++ b/Src/Samples/CSharp/MakeConst/Test/MakeConstCS.UnitTests.csproj @@ -1,7 +1,7 @@  - - + + @@ -16,8 +16,7 @@ Properties MakeConstCS.UnitTests MakeConstCS.UnitTests - ..\..\..\..\ - true + ..\..\..\ @@ -60,7 +59,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -73,13 +72,5 @@ - - - - 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/Samples/Samples.sln b/Src/Samples/Samples.sln index 771e1360aff..c422dbf072e 100644 --- a/Src/Samples/Samples.sln +++ b/Src/Samples/Samples.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 -VisualStudioVersion = 14.0.22004.0 +VisualStudioVersion = 14.0.22216.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APISampleUnitTestsCS", "CSharp\APISampleUnitTests\APISampleUnitTestsCS.csproj", "{CFF49CC1-85B5-49F7-B14B-A6EBF2592DD2}" EndProject @@ -53,7 +53,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{B00C02 ProjectSection(SolutionItems) = preProject .nuget\NuGet.Config = .nuget\NuGet.Config .nuget\NuGet.exe = .nuget\NuGet.exe - .nuget\NuGet.targets = .nuget\NuGet.targets EndProjectSection EndProject Global diff --git a/Src/Samples/Shared/UnitTestFramework/UnitTestFramework.csproj b/Src/Samples/Shared/UnitTestFramework/UnitTestFramework.csproj index 6b6ea9dd978..a02c49bd40e 100644 --- a/Src/Samples/Shared/UnitTestFramework/UnitTestFramework.csproj +++ b/Src/Samples/Shared/UnitTestFramework/UnitTestFramework.csproj @@ -1,7 +1,7 @@  - - + + @@ -17,7 +17,6 @@ Roslyn.UnitTestFramework Roslyn.UnitTestFramework ..\..\..\ - true @@ -58,7 +57,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -84,13 +83,5 @@ - - - - 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/Samples/VisualBasic/APISampleUnitTests/APISampleUnitTestsVB.vbproj b/Src/Samples/VisualBasic/APISampleUnitTests/APISampleUnitTestsVB.vbproj index d681a702a22..c104002e233 100644 --- a/Src/Samples/VisualBasic/APISampleUnitTests/APISampleUnitTestsVB.vbproj +++ b/Src/Samples/VisualBasic/APISampleUnitTests/APISampleUnitTestsVB.vbproj @@ -1,7 +1,7 @@  - - + + @@ -11,7 +11,6 @@ 4.0 ..\..\..\ - true @@ -65,7 +64,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -96,13 +95,5 @@ - - - - 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/Samples/VisualBasic/ConsoleClassifier/ConsoleClassifierVB.vbproj b/Src/Samples/VisualBasic/ConsoleClassifier/ConsoleClassifierVB.vbproj index 35b52f64f8d..6555f47541b 100644 --- a/Src/Samples/VisualBasic/ConsoleClassifier/ConsoleClassifierVB.vbproj +++ b/Src/Samples/VisualBasic/ConsoleClassifier/ConsoleClassifierVB.vbproj @@ -1,6 +1,6 @@  - + @@ -18,7 +18,6 @@ v4.5 VisualBasic\ConsoleClassifier ..\..\ - true @@ -51,7 +50,7 @@ False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -118,13 +117,5 @@ --> - - - - 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/Samples/VisualBasic/ConvertToAutoProperty/Impl/ConvertToAutoPropertyVB.vbproj b/Src/Samples/VisualBasic/ConvertToAutoProperty/Impl/ConvertToAutoPropertyVB.vbproj index 01fd195bd8a..d65182ae8c8 100644 --- a/Src/Samples/VisualBasic/ConvertToAutoProperty/Impl/ConvertToAutoPropertyVB.vbproj +++ b/Src/Samples/VisualBasic/ConvertToAutoProperty/Impl/ConvertToAutoPropertyVB.vbproj @@ -1,7 +1,7 @@  - - + + @@ -10,7 +10,6 @@ 4.0 ..\..\..\ - true @@ -74,7 +73,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -126,13 +125,5 @@ - - - - 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/Samples/VisualBasic/ConvertToAutoProperty/Test/ConvertToAutoPropertyVB.UnitTests.vbproj b/Src/Samples/VisualBasic/ConvertToAutoProperty/Test/ConvertToAutoPropertyVB.UnitTests.vbproj index de2cc35e0ab..36b964ad674 100644 --- a/Src/Samples/VisualBasic/ConvertToAutoProperty/Test/ConvertToAutoPropertyVB.UnitTests.vbproj +++ b/Src/Samples/VisualBasic/ConvertToAutoProperty/Test/ConvertToAutoPropertyVB.UnitTests.vbproj @@ -1,7 +1,7 @@  - - + + @@ -16,8 +16,7 @@ true Windows Off - ..\..\..\..\ - true + ..\..\..\ @@ -70,7 +69,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -92,14 +91,5 @@ - - - - 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/Samples/VisualBasic/FormatSolution/FormatSolutionVB.vbproj b/Src/Samples/VisualBasic/FormatSolution/FormatSolutionVB.vbproj index 22c5df34718..2ecd41e2836 100644 --- a/Src/Samples/VisualBasic/FormatSolution/FormatSolutionVB.vbproj +++ b/Src/Samples/VisualBasic/FormatSolution/FormatSolutionVB.vbproj @@ -1,7 +1,7 @@  - - + + @@ -19,7 +19,6 @@ v4.5 VisualBasic\FormatSolution ..\..\ - true @@ -50,10 +49,6 @@ $(VSLOutDir)\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll false - - False - ..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll - AnyCPU @@ -128,14 +123,5 @@ --> - - - - 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/Samples/VisualBasic/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedVB.vbproj b/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedVB.vbproj index f1ab24317f3..56c5378c9f8 100644 --- a/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedVB.vbproj +++ b/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Impl/ImplementNotifyPropertyChangedVB.vbproj @@ -1,7 +1,7 @@  - - + + @@ -10,7 +10,6 @@ 4.0 ..\..\..\ - true @@ -86,7 +85,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -144,13 +143,5 @@ - - - - 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/Samples/VisualBasic/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedVB.UnitTests.vbproj b/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedVB.UnitTests.vbproj index 14d5b1b7f57..0238bb7cb0a 100644 --- a/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedVB.UnitTests.vbproj +++ b/Src/Samples/VisualBasic/ImplementNotifyPropertyChanged/Test/ImplementNotifyPropertyChangedVB.UnitTests.vbproj @@ -1,7 +1,7 @@  - - + + @@ -15,8 +15,7 @@ ImplementNotifyPropertyChangedVB.UnitTests ImplementNotifyPropertyChangedVB.UnitTests Default - ..\..\..\..\ - true + ..\..\..\ @@ -58,7 +57,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -74,14 +73,5 @@ - - - - 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/Samples/VisualBasic/MakeConst/Impl/MakeConstVB.vbproj b/Src/Samples/VisualBasic/MakeConst/Impl/MakeConstVB.vbproj index 09f7ae239e0..022cc2ed84f 100644 --- a/Src/Samples/VisualBasic/MakeConst/Impl/MakeConstVB.vbproj +++ b/Src/Samples/VisualBasic/MakeConst/Impl/MakeConstVB.vbproj @@ -1,6 +1,6 @@  - + @@ -9,7 +9,6 @@ 4.0 ..\..\..\ - true @@ -93,7 +92,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -147,12 +146,5 @@ - - - - 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/Samples/VisualBasic/MakeConst/Test/MakeConstVB.UnitTests.vbproj b/Src/Samples/VisualBasic/MakeConst/Test/MakeConstVB.UnitTests.vbproj index fd9b36409d1..f1e27b78821 100644 --- a/Src/Samples/VisualBasic/MakeConst/Test/MakeConstVB.UnitTests.vbproj +++ b/Src/Samples/VisualBasic/MakeConst/Test/MakeConstVB.UnitTests.vbproj @@ -1,14 +1,13 @@  - - + + MakeConstVB.UnitTests - ..\..\..\..\ - true + ..\..\..\ @@ -73,7 +72,7 @@ False - ..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll + ..\..\..\..\..\packages\System.Collections.Immutable.1.1.32-beta\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll @@ -95,14 +94,5 @@ - - - - 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 -- GitLab