From b2cd160e285996052ed5df8306a52fd03d69dadc Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 20 Mar 2016 17:02:38 -0700 Subject: [PATCH] Use project.json in all samples As you can see from the change stats, this significantly reduces lines of code. The redundancy and complexity of packages.config and its impact on project files all go away in favor of the simple project.json approach. --- .gitignore | 4 + .../C#/BasicSccProvider.csproj | 95 +------------ .../C#/packages.config | 23 ---- Basic_Source_Control_Provider/C#/project.json | 14 ++ .../BuildProgressBar/BuildProgressBar.csproj | 95 +------------ .../C#/BuildProgressBar/packages.config | 23 ---- .../C#/BuildProgressBar/project.json | 14 ++ Caret_Fish_Eye/C#/CaretFishEye.csproj | 40 +----- Caret_Fish_Eye/C#/packages.config | 10 -- Caret_Fish_Eye/C#/project.json | 13 ++ Code_Sweep/C#/VsPackage/VsPackage.csproj | 95 +------------ Code_Sweep/C#/VsPackage/packages.config | 23 ---- Code_Sweep/C#/VsPackage/project.json | 14 ++ Combo_Box/C#/Reference.ComboBox.csproj | 95 +------------ Combo_Box/C#/packages.config | 23 ---- Combo_Box/C#/project.json | 14 ++ .../CommandTargetRGB/CommandTargetRGB.csproj | 95 +------------ .../C#/CommandTargetRGB/packages.config | 23 ---- .../C#/CommandTargetRGB/project.json | 14 ++ .../C#/CompletionTooltipCustomization.csproj | 74 ++-------- .../C#/packages.config | 11 -- .../C#/project.json | 14 ++ Diff_Classifier/C#/DiffClassifier.csproj | 40 +----- Diff_Classifier/C#/packages.config | 10 -- Diff_Classifier/C#/project.json | 13 ++ .../CS/EditorWithToolbox.csproj | 105 +------------- Editor_With_Toolbox/CS/packages.config | 23 ---- Editor_With_Toolbox/CS/project.json | 14 ++ Highlight_Word/C#/HighlightWord.csproj | 40 +----- Highlight_Word/C#/packages.config | 10 -- Highlight_Word/C#/project.json | 13 ++ .../C#/IntraTextAdornmentSample.csproj | 40 +----- Intra-text_Adornment/C#/packages.config | 10 -- Intra-text_Adornment/C#/project.json | 13 ++ LightBulb/TestLightBulb/TestLightBulb.csproj | 43 +----- LightBulb/TestLightBulb/packages.config | 10 -- LightBulb/TestLightBulb/project.json | 15 ++ MSDNSearch/C#/MSDNSearch/MSDNSearch.csproj | 89 +----------- MSDNSearch/C#/MSDNSearch/packages.config | 23 ---- MSDNSearch/C#/MSDNSearch/project.json | 14 ++ Menu_And_Commands/C#/MenuAndCommands.csproj | 95 +------------ Menu_And_Commands/C#/packages.config | 23 ---- Menu_And_Commands/C#/project.json | 14 ++ .../C#/OokLanguage.csproj | 130 +----------------- Ook_Language_Integration/C#/packages.config | 30 ---- Ook_Language_Integration/C#/project.json | 16 +++ Options_Page/C#/OptionsPageCS.csproj | 117 +--------------- Options_Page/C#/packages.config | 26 ---- Options_Page/C#/project.json | 15 ++ Reference_Package/C#/Package.csproj | 96 +------------ Reference_Package/C#/packages.config | 23 ---- Reference_Package/C#/project.json | 14 ++ .../Reference.Services.Interfaces.csproj | 20 +-- .../packages.config | 5 - .../project.json | 13 ++ .../Reference.Services.csproj | 96 +------------ .../C#/Reference.Services/packages.config | 23 ---- .../C#/Reference.Services/project.json | 14 ++ .../C#/RdtEventExplorer.csproj | 95 +------------ .../C#/packages.config | 23 ---- .../C#/project.json | 14 ++ .../C#/GeneratorSample.csproj | 99 +------------ Single_File_Generator/C#/app.config | 11 ++ Single_File_Generator/C#/packages.config | 24 ---- Single_File_Generator/C#/project.json | 15 ++ .../C#/SccProvider.csproj | 96 +------------ .../C#/packages.config | 23 ---- Source_Code_Control_Provider/C#/project.json | 14 ++ .../C#/TodoClassification.csproj | 61 +------- Todo_Classification/C#/packages.config | 15 -- Todo_Classification/C#/project.json | 13 ++ Typing_Speed_Meter/C#/TypingSpeed.csproj | 116 +--------------- Typing_Speed_Meter/C#/packages.config | 29 ---- Typing_Speed_Meter/C#/project.json | 15 ++ .../WPFDesigner_XML/WPFDesigner_XML.csproj | 97 +------------ .../WPFDesigner_XML/packages.config | 23 ---- WPFDesigner_XML/WPFDesigner_XML/project.json | 15 ++ WPF_Toolwindow/C#/ToolWindow.csproj | 100 +------------- WPF_Toolwindow/C#/packages.config | 25 ---- WPF_Toolwindow/C#/project.json | 17 +++ .../WinformsControlsInstaller.csproj | 96 +------------ .../WinformsControlsInstaller/packages.config | 23 ---- .../C#/WinformsControlsInstaller/project.json | 14 ++ 83 files changed, 437 insertions(+), 2757 deletions(-) delete mode 100644 Basic_Source_Control_Provider/C#/packages.config create mode 100644 Basic_Source_Control_Provider/C#/project.json delete mode 100644 Build_Progress_Bar/C#/BuildProgressBar/packages.config create mode 100644 Build_Progress_Bar/C#/BuildProgressBar/project.json delete mode 100644 Caret_Fish_Eye/C#/packages.config create mode 100644 Caret_Fish_Eye/C#/project.json delete mode 100644 Code_Sweep/C#/VsPackage/packages.config create mode 100644 Code_Sweep/C#/VsPackage/project.json delete mode 100644 Combo_Box/C#/packages.config create mode 100644 Combo_Box/C#/project.json delete mode 100644 CommandTargetRGB/C#/CommandTargetRGB/packages.config create mode 100644 CommandTargetRGB/C#/CommandTargetRGB/project.json delete mode 100644 Completion_Tooltip_Customization/C#/packages.config create mode 100644 Completion_Tooltip_Customization/C#/project.json delete mode 100644 Diff_Classifier/C#/packages.config create mode 100644 Diff_Classifier/C#/project.json delete mode 100644 Editor_With_Toolbox/CS/packages.config create mode 100644 Editor_With_Toolbox/CS/project.json delete mode 100644 Highlight_Word/C#/packages.config create mode 100644 Highlight_Word/C#/project.json delete mode 100644 Intra-text_Adornment/C#/packages.config create mode 100644 Intra-text_Adornment/C#/project.json delete mode 100644 LightBulb/TestLightBulb/packages.config create mode 100644 LightBulb/TestLightBulb/project.json delete mode 100644 MSDNSearch/C#/MSDNSearch/packages.config create mode 100644 MSDNSearch/C#/MSDNSearch/project.json delete mode 100644 Menu_And_Commands/C#/packages.config create mode 100644 Menu_And_Commands/C#/project.json delete mode 100644 Ook_Language_Integration/C#/packages.config create mode 100644 Ook_Language_Integration/C#/project.json delete mode 100644 Options_Page/C#/packages.config create mode 100644 Options_Page/C#/project.json delete mode 100644 Reference_Package/C#/packages.config create mode 100644 Reference_Package/C#/project.json delete mode 100644 Reference_Services/C#/Reference.Services.Interfaces/packages.config create mode 100644 Reference_Services/C#/Reference.Services.Interfaces/project.json delete mode 100644 Reference_Services/C#/Reference.Services/packages.config create mode 100644 Reference_Services/C#/Reference.Services/project.json delete mode 100644 RunningDocumentTable(RDT)_Event_Explorer/C#/packages.config create mode 100644 RunningDocumentTable(RDT)_Event_Explorer/C#/project.json create mode 100644 Single_File_Generator/C#/app.config delete mode 100644 Single_File_Generator/C#/packages.config create mode 100644 Single_File_Generator/C#/project.json delete mode 100644 Source_Code_Control_Provider/C#/packages.config create mode 100644 Source_Code_Control_Provider/C#/project.json delete mode 100644 Todo_Classification/C#/packages.config create mode 100644 Todo_Classification/C#/project.json delete mode 100644 Typing_Speed_Meter/C#/packages.config create mode 100644 Typing_Speed_Meter/C#/project.json delete mode 100644 WPFDesigner_XML/WPFDesigner_XML/packages.config create mode 100644 WPFDesigner_XML/WPFDesigner_XML/project.json delete mode 100644 WPF_Toolwindow/C#/packages.config create mode 100644 WPF_Toolwindow/C#/project.json delete mode 100644 Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/packages.config create mode 100644 Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/project.json diff --git a/.gitignore b/.gitignore index 57a1574c..eb1ea785 100644 --- a/.gitignore +++ b/.gitignore @@ -138,6 +138,10 @@ publish/ *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* +project.lock.json +*.nuget.props +*.nuget.targets + # except build/, which is used as an MSBuild target. !**/packages/build/ # Uncomment if necessary however generally it will be regenerated when needed diff --git a/Basic_Source_Control_Provider/C#/BasicSccProvider.csproj b/Basic_Source_Control_Provider/C#/BasicSccProvider.csproj index 460bd812..b35a04dd 100644 --- a/Basic_Source_Control_Provider/C#/BasicSccProvider.csproj +++ b/Basic_Source_Control_Provider/C#/BasicSccProvider.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -64,81 +63,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -245,7 +169,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -264,21 +188,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Basic_Source_Control_Provider/C#/packages.config b/Basic_Source_Control_Provider/C#/packages.config deleted file mode 100644 index 2ebeaa1d..00000000 --- a/Basic_Source_Control_Provider/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Basic_Source_Control_Provider/C#/project.json b/Basic_Source_Control_Provider/C#/project.json new file mode 100644 index 00000000..64147483 --- /dev/null +++ b/Basic_Source_Control_Provider/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net452": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Build_Progress_Bar/C#/BuildProgressBar/BuildProgressBar.csproj b/Build_Progress_Bar/C#/BuildProgressBar/BuildProgressBar.csproj index ac4fc95f..6a26bf40 100644 --- a/Build_Progress_Bar/C#/BuildProgressBar/BuildProgressBar.csproj +++ b/Build_Progress_Bar/C#/BuildProgressBar/BuildProgressBar.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -58,81 +57,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -169,7 +93,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -197,21 +121,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Build_Progress_Bar/C#/BuildProgressBar/packages.config b/Build_Progress_Bar/C#/BuildProgressBar/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Build_Progress_Bar/C#/BuildProgressBar/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build_Progress_Bar/C#/BuildProgressBar/project.json b/Build_Progress_Bar/C#/BuildProgressBar/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Build_Progress_Bar/C#/BuildProgressBar/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Caret_Fish_Eye/C#/CaretFishEye.csproj b/Caret_Fish_Eye/C#/CaretFishEye.csproj index 0e80f058..8ef0fd1b 100644 --- a/Caret_Fish_Eye/C#/CaretFishEye.csproj +++ b/Caret_Fish_Eye/C#/CaretFishEye.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -49,26 +48,6 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - @@ -93,7 +72,7 @@ - + PreserveNewest Designer @@ -107,21 +86,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/Caret_Fish_Eye/C#/packages.config b/Caret_Fish_Eye/C#/packages.config deleted file mode 100644 index ad285771..00000000 --- a/Caret_Fish_Eye/C#/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Caret_Fish_Eye/C#/project.json b/Caret_Fish_Eye/C#/project.json new file mode 100644 index 00000000..8894695e --- /dev/null +++ b/Caret_Fish_Eye/C#/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Code_Sweep/C#/VsPackage/VsPackage.csproj b/Code_Sweep/C#/VsPackage/VsPackage.csproj index a2dc883d..0e0dc38a 100644 --- a/Code_Sweep/C#/VsPackage/VsPackage.csproj +++ b/Code_Sweep/C#/VsPackage/VsPackage.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -82,81 +81,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -274,7 +198,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - + Designer @@ -326,21 +250,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Code_Sweep/C#/VsPackage/packages.config b/Code_Sweep/C#/VsPackage/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Code_Sweep/C#/VsPackage/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Code_Sweep/C#/VsPackage/project.json b/Code_Sweep/C#/VsPackage/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Code_Sweep/C#/VsPackage/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Combo_Box/C#/Reference.ComboBox.csproj b/Combo_Box/C#/Reference.ComboBox.csproj index 172a6bb7..e619f880 100644 --- a/Combo_Box/C#/Reference.ComboBox.csproj +++ b/Combo_Box/C#/Reference.ComboBox.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -59,81 +58,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -221,7 +145,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -243,21 +167,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Combo_Box/C#/packages.config b/Combo_Box/C#/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Combo_Box/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Combo_Box/C#/project.json b/Combo_Box/C#/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Combo_Box/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/CommandTargetRGB/C#/CommandTargetRGB/CommandTargetRGB.csproj b/CommandTargetRGB/C#/CommandTargetRGB/CommandTargetRGB.csproj index 110b9bb7..fa62d0e0 100644 --- a/CommandTargetRGB/C#/CommandTargetRGB/CommandTargetRGB.csproj +++ b/CommandTargetRGB/C#/CommandTargetRGB/CommandTargetRGB.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -64,81 +63,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -234,7 +158,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -269,21 +193,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/CommandTargetRGB/C#/CommandTargetRGB/packages.config b/CommandTargetRGB/C#/CommandTargetRGB/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/CommandTargetRGB/C#/CommandTargetRGB/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/CommandTargetRGB/C#/CommandTargetRGB/project.json b/CommandTargetRGB/C#/CommandTargetRGB/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/CommandTargetRGB/C#/CommandTargetRGB/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Completion_Tooltip_Customization/C#/CompletionTooltipCustomization.csproj b/Completion_Tooltip_Customization/C#/CompletionTooltipCustomization.csproj index 8729f4b8..cd8f8d68 100644 --- a/Completion_Tooltip_Customization/C#/CompletionTooltipCustomization.csproj +++ b/Completion_Tooltip_Customization/C#/CompletionTooltipCustomization.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -49,57 +48,23 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Language.Intellisense.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Language.Intellisense.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + PreserveNewest Designer @@ -113,21 +78,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/Completion_Tooltip_Customization/C#/packages.config b/Completion_Tooltip_Customization/C#/packages.config deleted file mode 100644 index 74882bac..00000000 --- a/Completion_Tooltip_Customization/C#/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Completion_Tooltip_Customization/C#/project.json b/Completion_Tooltip_Customization/C#/project.json new file mode 100644 index 00000000..075ee6f1 --- /dev/null +++ b/Completion_Tooltip_Customization/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VisualStudio.Language.Intellisense": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Diff_Classifier/C#/DiffClassifier.csproj b/Diff_Classifier/C#/DiffClassifier.csproj index f8f2c69f..e9d556f8 100644 --- a/Diff_Classifier/C#/DiffClassifier.csproj +++ b/Diff_Classifier/C#/DiffClassifier.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -55,26 +54,6 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - @@ -98,7 +77,7 @@ - + PreserveNewest Designer @@ -112,21 +91,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/Diff_Classifier/C#/packages.config b/Diff_Classifier/C#/packages.config deleted file mode 100644 index ad285771..00000000 --- a/Diff_Classifier/C#/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Diff_Classifier/C#/project.json b/Diff_Classifier/C#/project.json new file mode 100644 index 00000000..8894695e --- /dev/null +++ b/Diff_Classifier/C#/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Editor_With_Toolbox/CS/EditorWithToolbox.csproj b/Editor_With_Toolbox/CS/EditorWithToolbox.csproj index fc06f245..beeb73bc 100644 --- a/Editor_With_Toolbox/CS/EditorWithToolbox.csproj +++ b/Editor_With_Toolbox/CS/EditorWithToolbox.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -90,81 +89,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -194,7 +118,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + @@ -242,31 +166,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - - - - - - - - - - - - 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/Editor_With_Toolbox/CS/packages.config b/Editor_With_Toolbox/CS/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Editor_With_Toolbox/CS/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Editor_With_Toolbox/CS/project.json b/Editor_With_Toolbox/CS/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Editor_With_Toolbox/CS/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Highlight_Word/C#/HighlightWord.csproj b/Highlight_Word/C#/HighlightWord.csproj index 34a50e1a..6b260fb0 100644 --- a/Highlight_Word/C#/HighlightWord.csproj +++ b/Highlight_Word/C#/HighlightWord.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -50,26 +49,6 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - @@ -96,7 +75,7 @@ - + PreserveNewest Designer @@ -110,21 +89,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/Highlight_Word/C#/packages.config b/Highlight_Word/C#/packages.config deleted file mode 100644 index ad285771..00000000 --- a/Highlight_Word/C#/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Highlight_Word/C#/project.json b/Highlight_Word/C#/project.json new file mode 100644 index 00000000..8894695e --- /dev/null +++ b/Highlight_Word/C#/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Intra-text_Adornment/C#/IntraTextAdornmentSample.csproj b/Intra-text_Adornment/C#/IntraTextAdornmentSample.csproj index e7fc1fcd..060f9d59 100644 --- a/Intra-text_Adornment/C#/IntraTextAdornmentSample.csproj +++ b/Intra-text_Adornment/C#/IntraTextAdornmentSample.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -49,26 +48,6 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - @@ -94,7 +73,7 @@ - + Designer @@ -107,21 +86,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/Intra-text_Adornment/C#/packages.config b/Intra-text_Adornment/C#/packages.config deleted file mode 100644 index ad285771..00000000 --- a/Intra-text_Adornment/C#/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Intra-text_Adornment/C#/project.json b/Intra-text_Adornment/C#/project.json new file mode 100644 index 00000000..8894695e --- /dev/null +++ b/Intra-text_Adornment/C#/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/LightBulb/TestLightBulb/TestLightBulb.csproj b/LightBulb/TestLightBulb/TestLightBulb.csproj index 7e0528ff..8a77d907 100644 --- a/LightBulb/TestLightBulb/TestLightBulb.csproj +++ b/LightBulb/TestLightBulb/TestLightBulb.csproj @@ -68,32 +68,6 @@ /rootsuffix Exp - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.0.22823-RC\lib\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll - True - - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - @@ -113,7 +87,7 @@ - + Designer @@ -146,19 +120,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/LightBulb/TestLightBulb/packages.config b/LightBulb/TestLightBulb/packages.config deleted file mode 100644 index b8ab1ec8..00000000 --- a/LightBulb/TestLightBulb/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/LightBulb/TestLightBulb/project.json b/LightBulb/TestLightBulb/project.json new file mode 100644 index 00000000..3c432bd7 --- /dev/null +++ b/LightBulb/TestLightBulb/project.json @@ -0,0 +1,15 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Text.UI.Wpf": "14.0.23205", + "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "14.0.23205", + "Microsoft.VisualStudio.Language.Intellisense": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/MSDNSearch/C#/MSDNSearch/MSDNSearch.csproj b/MSDNSearch/C#/MSDNSearch/MSDNSearch.csproj index 0e42b594..fb945463 100644 --- a/MSDNSearch/C#/MSDNSearch/MSDNSearch.csproj +++ b/MSDNSearch/C#/MSDNSearch/MSDNSearch.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -56,81 +55,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -225,7 +149,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -241,15 +165,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - 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/MSDNSearch/C#/MSDNSearch/packages.config b/MSDNSearch/C#/MSDNSearch/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/MSDNSearch/C#/MSDNSearch/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MSDNSearch/C#/MSDNSearch/project.json b/MSDNSearch/C#/MSDNSearch/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/MSDNSearch/C#/MSDNSearch/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Menu_And_Commands/C#/MenuAndCommands.csproj b/Menu_And_Commands/C#/MenuAndCommands.csproj index 3ac42c57..8cb69a25 100644 --- a/Menu_And_Commands/C#/MenuAndCommands.csproj +++ b/Menu_And_Commands/C#/MenuAndCommands.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -60,81 +59,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -228,7 +152,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - + Designer @@ -263,21 +187,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Menu_And_Commands/C#/packages.config b/Menu_And_Commands/C#/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Menu_And_Commands/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Menu_And_Commands/C#/project.json b/Menu_And_Commands/C#/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Menu_And_Commands/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Ook_Language_Integration/C#/OokLanguage.csproj b/Ook_Language_Integration/C#/OokLanguage.csproj index 3868f806..902822e0 100644 --- a/Ook_Language_Integration/C#/OokLanguage.csproj +++ b/Ook_Language_Integration/C#/OokLanguage.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -69,109 +68,10 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - packages\Microsoft.VisualStudio.Editor.14.0.22823-RC\lib\Microsoft.VisualStudio.Editor.dll True - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.Language.Intellisense.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Language.Intellisense.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -197,7 +97,7 @@ - + Designer @@ -216,32 +116,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/Ook_Language_Integration/C#/packages.config b/Ook_Language_Integration/C#/packages.config deleted file mode 100644 index cc1100c4..00000000 --- a/Ook_Language_Integration/C#/packages.config +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Ook_Language_Integration/C#/project.json b/Ook_Language_Integration/C#/project.json new file mode 100644 index 00000000..e459eb37 --- /dev/null +++ b/Ook_Language_Integration/C#/project.json @@ -0,0 +1,16 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.Editor": "14.0.23205", + "Microsoft.VisualStudio.Language.Intellisense": "14.0.23205", + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Options_Page/C#/OptionsPageCS.csproj b/Options_Page/C#/OptionsPageCS.csproj index fe2d85bd..4ee8ebb5 100644 --- a/Options_Page/C#/OptionsPageCS.csproj +++ b/Options_Page/C#/OptionsPageCS.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -59,95 +58,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - packages\Microsoft.VisualStudio.ImageCatalog.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.ImageCatalog.dll - True - - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - True - packages\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.0.22823-RC\lib\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - True - packages\Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -162,12 +72,8 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. UserControl - - Component - - - Component - + + True @@ -187,7 +93,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -205,21 +111,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/Options_Page/C#/packages.config b/Options_Page/C#/packages.config deleted file mode 100644 index b8ad006f..00000000 --- a/Options_Page/C#/packages.config +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Options_Page/C#/project.json b/Options_Page/C#/project.json new file mode 100644 index 00000000..b4d67eb1 --- /dev/null +++ b/Options_Page/C#/project.json @@ -0,0 +1,15 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": "14.0.23205", + "Microsoft.VisualStudio.ImageCatalog": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Reference_Package/C#/Package.csproj b/Reference_Package/C#/Package.csproj index 99958377..91823549 100644 --- a/Reference_Package/C#/Package.csproj +++ b/Reference_Package/C#/Package.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 12.0 @@ -63,81 +62,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -157,7 +81,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -167,22 +91,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - 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/Reference_Package/C#/packages.config b/Reference_Package/C#/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Reference_Package/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Reference_Package/C#/project.json b/Reference_Package/C#/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Reference_Package/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Reference_Services/C#/Reference.Services.Interfaces/Reference.Services.Interfaces.csproj b/Reference_Services/C#/Reference.Services.Interfaces/Reference.Services.Interfaces.csproj index a0e78fd9..2c5d3604 100644 --- a/Reference_Services/C#/Reference.Services.Interfaces/Reference.Services.Interfaces.csproj +++ b/Reference_Services/C#/Reference.Services.Interfaces/Reference.Services.Interfaces.csproj @@ -9,7 +9,6 @@ IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - Debug AnyCPU @@ -54,24 +53,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + - - - - 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/Reference_Services/C#/Reference.Services.Interfaces/packages.config b/Reference_Services/C#/Reference.Services.Interfaces/packages.config deleted file mode 100644 index d7e3e540..00000000 --- a/Reference_Services/C#/Reference.Services.Interfaces/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Reference_Services/C#/Reference.Services.Interfaces/project.json b/Reference_Services/C#/Reference.Services.Interfaces/project.json new file mode 100644 index 00000000..48438118 --- /dev/null +++ b/Reference_Services/C#/Reference.Services.Interfaces/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.SDK.VsixSuppression": "14.0.50420-pre", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Reference_Services/C#/Reference.Services/Reference.Services.csproj b/Reference_Services/C#/Reference.Services/Reference.Services.csproj index f2a21ae1..ad4af418 100644 --- a/Reference_Services/C#/Reference.Services/Reference.Services.csproj +++ b/Reference_Services/C#/Reference.Services/Reference.Services.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 12.0 12.0 @@ -63,81 +62,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -155,7 +79,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Menus.ctmenu @@ -177,22 +101,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - 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/Reference_Services/C#/Reference.Services/packages.config b/Reference_Services/C#/Reference.Services/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Reference_Services/C#/Reference.Services/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Reference_Services/C#/Reference.Services/project.json b/Reference_Services/C#/Reference.Services/project.json new file mode 100644 index 00000000..3c2ed94d --- /dev/null +++ b/Reference_Services/C#/Reference.Services/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/RunningDocumentTable(RDT)_Event_Explorer/C#/RdtEventExplorer.csproj b/RunningDocumentTable(RDT)_Event_Explorer/C#/RdtEventExplorer.csproj index 4be76433..4b865f2e 100644 --- a/RunningDocumentTable(RDT)_Event_Explorer/C#/RdtEventExplorer.csproj +++ b/RunningDocumentTable(RDT)_Event_Explorer/C#/RdtEventExplorer.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -64,81 +63,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -191,7 +115,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + @@ -214,21 +138,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - - 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/RunningDocumentTable(RDT)_Event_Explorer/C#/packages.config b/RunningDocumentTable(RDT)_Event_Explorer/C#/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/RunningDocumentTable(RDT)_Event_Explorer/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/RunningDocumentTable(RDT)_Event_Explorer/C#/project.json b/RunningDocumentTable(RDT)_Event_Explorer/C#/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/RunningDocumentTable(RDT)_Event_Explorer/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Single_File_Generator/C#/GeneratorSample.csproj b/Single_File_Generator/C#/GeneratorSample.csproj index 42b11302..2df69943 100644 --- a/Single_File_Generator/C#/GeneratorSample.csproj +++ b/Single_File_Generator/C#/GeneratorSample.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -68,86 +67,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. False - - True - ..\packages\Microsoft.VisualStudio.Designer.Interfaces.1.1.4322-pre\lib\microsoft.visualstudio.designer.interfaces.dll - True - - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - System @@ -182,7 +101,8 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. Designer - + + XmlClassGeneratorSchema.xsd @@ -211,19 +131,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - - - - - 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/Single_File_Generator/C#/app.config b/Single_File_Generator/C#/app.config new file mode 100644 index 00000000..4a1c0bf1 --- /dev/null +++ b/Single_File_Generator/C#/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Single_File_Generator/C#/packages.config b/Single_File_Generator/C#/packages.config deleted file mode 100644 index 718f3dc6..00000000 --- a/Single_File_Generator/C#/packages.config +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Single_File_Generator/C#/project.json b/Single_File_Generator/C#/project.json new file mode 100644 index 00000000..7a52fa3b --- /dev/null +++ b/Single_File_Generator/C#/project.json @@ -0,0 +1,15 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VisualStudio.Designer.Interfaces": "1.1.4322", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Source_Code_Control_Provider/C#/SccProvider.csproj b/Source_Code_Control_Provider/C#/SccProvider.csproj index 14752e97..af6da97e 100644 --- a/Source_Code_Control_Provider/C#/SccProvider.csproj +++ b/Source_Code_Control_Provider/C#/SccProvider.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -63,87 +62,12 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - True - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - True - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -271,7 +195,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -294,22 +218,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - 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/Source_Code_Control_Provider/C#/packages.config b/Source_Code_Control_Provider/C#/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Source_Code_Control_Provider/C#/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Source_Code_Control_Provider/C#/project.json b/Source_Code_Control_Provider/C#/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Source_Code_Control_Provider/C#/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Todo_Classification/C#/TodoClassification.csproj b/Todo_Classification/C#/TodoClassification.csproj index c86d151b..ddaf2553 100644 --- a/Todo_Classification/C#/TodoClassification.csproj +++ b/Todo_Classification/C#/TodoClassification.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -49,46 +48,10 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - packages\Microsoft.VisualStudio.Editor.14.0.22823-RC\lib\Microsoft.VisualStudio.Editor.dll True - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - @@ -114,7 +77,7 @@ - + @@ -130,26 +93,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/Todo_Classification/C#/packages.config b/Todo_Classification/C#/packages.config deleted file mode 100644 index 20eb5e91..00000000 --- a/Todo_Classification/C#/packages.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Todo_Classification/C#/project.json b/Todo_Classification/C#/project.json new file mode 100644 index 00000000..005d9d52 --- /dev/null +++ b/Todo_Classification/C#/project.json @@ -0,0 +1,13 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.Editor": "14.0.23205", + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Typing_Speed_Meter/C#/TypingSpeed.csproj b/Typing_Speed_Meter/C#/TypingSpeed.csproj index 4982e339..a158446e 100644 --- a/Typing_Speed_Meter/C#/TypingSpeed.csproj +++ b/Typing_Speed_Meter/C#/TypingSpeed.csproj @@ -1,6 +1,5 @@  - 14.0 14.0 @@ -49,105 +48,10 @@ - - ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.CoreUtility.dll - True - packages\Microsoft.VisualStudio.Editor.14.0.22823-RC\lib\Microsoft.VisualStudio.Editor.dll True - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Data.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Data.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.Logic.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.Logic.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.dll - True - - - ..\packages\Microsoft.VisualStudio.Text.UI.Wpf.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Text.UI.Wpf.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -178,7 +82,7 @@ - + @@ -188,22 +92,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/Typing_Speed_Meter/C#/packages.config b/Typing_Speed_Meter/C#/packages.config deleted file mode 100644 index 3027487e..00000000 --- a/Typing_Speed_Meter/C#/packages.config +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Typing_Speed_Meter/C#/project.json b/Typing_Speed_Meter/C#/project.json new file mode 100644 index 00000000..0c39d7c9 --- /dev/null +++ b/Typing_Speed_Meter/C#/project.json @@ -0,0 +1,15 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Editor": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/WPFDesigner_XML/WPFDesigner_XML/WPFDesigner_XML.csproj b/WPFDesigner_XML/WPFDesigner_XML/WPFDesigner_XML.csproj index ed13660d..7abb09f8 100644 --- a/WPFDesigner_XML/WPFDesigner_XML/WPFDesigner_XML.csproj +++ b/WPFDesigner_XML/WPFDesigner_XML/WPFDesigner_XML.csproj @@ -72,7 +72,7 @@ - + Designer @@ -102,88 +102,8 @@ True - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Package.LanguageService.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Package.LanguageService.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - False - ..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.VisualStudio.XmlEditor\v4.0_14.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.XmlEditor.dll @@ -212,19 +132,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/WPFDesigner_XML/WPFDesigner_XML/packages.config b/WPFDesigner_XML/WPFDesigner_XML/packages.config deleted file mode 100644 index 65f0819b..00000000 --- a/WPFDesigner_XML/WPFDesigner_XML/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/WPFDesigner_XML/WPFDesigner_XML/project.json b/WPFDesigner_XML/WPFDesigner_XML/project.json new file mode 100644 index 00000000..96a70aa3 --- /dev/null +++ b/WPFDesigner_XML/WPFDesigner_XML/project.json @@ -0,0 +1,15 @@ +{ + "frameworks": { + "net452": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VisualStudio.Package.LanguageService.14.0": "14.0.22823-RC", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/WPF_Toolwindow/C#/ToolWindow.csproj b/WPF_Toolwindow/C#/ToolWindow.csproj index febd7caf..2db3d75d 100644 --- a/WPF_Toolwindow/C#/ToolWindow.csproj +++ b/WPF_Toolwindow/C#/ToolWindow.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -60,93 +59,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - packages\Microsoft.VisualStudio.ImageCatalog.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.ImageCatalog.dll - True - - - packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - packages\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.0.22823-RC\lib\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll - True - - - packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - True - True - - - packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -190,7 +102,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -225,14 +137,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - - 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/WPF_Toolwindow/C#/packages.config b/WPF_Toolwindow/C#/packages.config deleted file mode 100644 index f2746c9e..00000000 --- a/WPF_Toolwindow/C#/packages.config +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/WPF_Toolwindow/C#/project.json b/WPF_Toolwindow/C#/project.json new file mode 100644 index 00000000..e87aa3f3 --- /dev/null +++ b/WPF_Toolwindow/C#/project.json @@ -0,0 +1,17 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.ImageCatalog": "14.0.23205", + "Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime": "14.0.23205", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file diff --git a/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/WinformsControlsInstaller.csproj b/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/WinformsControlsInstaller.csproj index 07484ce1..6035aa9f 100644 --- a/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/WinformsControlsInstaller.csproj +++ b/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/WinformsControlsInstaller.csproj @@ -9,7 +9,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. --> - 14.0 14.0 @@ -58,81 +57,6 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - - ..\packages\Microsoft.VisualStudio.Imaging.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Imaging.dll - True - - - ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.OLE.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.22823-RC\lib\Microsoft.VisualStudio.Shell.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319-pre\lib\net40\microsoft.visualstudio.shell.immutable.10.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727-pre\lib\net45\microsoft.visualstudio.shell.immutable.11.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003-pre\lib\net45\microsoft.visualstudio.shell.immutable.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071-pre\lib\Microsoft.VisualStudio.Shell.Interop.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319-pre\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030-pre\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll - True - - - True - ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110-pre\lib\Microsoft.VisualStudio.Shell.Interop.12.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729-pre\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070-pre\lib\Microsoft.VisualStudio.TextManager.Interop.dll - True - - - ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727-pre\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll - True - - - ..\packages\Microsoft.VisualStudio.Threading.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Threading.dll - True - - - ..\packages\Microsoft.VisualStudio.Utilities.14.0.22823-RC\lib\net45\Microsoft.VisualStudio.Utilities.dll - True - - - ..\packages\Microsoft.VisualStudio.Validation.14.0.50417-pre\lib\net45\Microsoft.VisualStudio.Validation.dll - True - @@ -170,7 +94,7 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. - + Designer @@ -186,22 +110,4 @@ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. true - - - - - 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/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/packages.config b/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/packages.config deleted file mode 100644 index 806ebf01..00000000 --- a/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/packages.config +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/project.json b/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/project.json new file mode 100644 index 00000000..c47e8c55 --- /dev/null +++ b/Windows_Forms_Controls_Installer/C#/WinformsControlsInstaller/project.json @@ -0,0 +1,14 @@ +{ + "frameworks": { + "net45": { } + }, + "dependencies": { + "Microsoft.VisualStudio.SDK.EmbedInteropTypes": "14.1.2", + "Microsoft.VisualStudio.Shell.14.0": "14.0.23205", + "Microsoft.VisualStudio.Shell.Interop.12.0": "12.0.30110", + "Microsoft.VSSDK.BuildTools": "14.0.23205" + }, + "runtimes": { + "win": { } + } +} \ No newline at end of file