forked from microsoft/ebpf-for-windows
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add .vsconfig Store dependencies in a .vsconfig file, which is picked up by Visual Studio when opening the solution file. This is easier than manually selecting the correct options in the installer. Change Setup-DevEnv.ps1 to use the .vsconfig file from the repo and remove the buildtools installation, since those seem to be duplicates. * enable common options during git installation
- Loading branch information
Showing
3 changed files
with
50 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"version": "1.0", | ||
"components": [ | ||
"Microsoft.VisualStudio.Component.CoreEditor", | ||
"Microsoft.VisualStudio.Workload.CoreEditor", | ||
"Microsoft.VisualStudio.Component.Roslyn.Compiler", | ||
"Microsoft.Component.MSBuild", | ||
"Microsoft.VisualStudio.Component.TextTemplating", | ||
"Microsoft.VisualStudio.Component.NuGet", | ||
"Microsoft.VisualStudio.Component.Debugger.JustInTime", | ||
"Microsoft.VisualStudio.Component.IntelliCode", | ||
"Microsoft.VisualStudio.Component.VC.CoreIde", | ||
"Microsoft.VisualStudio.Component.Windows10SDK", | ||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64", | ||
"Microsoft.VisualStudio.Component.Graphics.Tools", | ||
"Microsoft.VisualStudio.Component.VC.DiagnosticTools", | ||
"Microsoft.VisualStudio.Component.Windows11SDK.22621", | ||
"Microsoft.VisualStudio.Component.VC.ATL", | ||
"Microsoft.VisualStudio.Component.SecurityIssueAnalysis", | ||
"Microsoft.VisualStudio.Component.VC.Redist.14.Latest", | ||
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core", | ||
"Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit", | ||
"Microsoft.VisualStudio.Component.CppBuildInsights", | ||
"Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake", | ||
"Microsoft.VisualStudio.Component.VC.CMake.Project", | ||
"Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest", | ||
"Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest", | ||
"Microsoft.VisualStudio.Component.VC.ASAN", | ||
"Microsoft.VisualStudio.Component.Vcpkg", | ||
"Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset", | ||
"Microsoft.VisualStudio.Component.VC.Llvm.Clang", | ||
"Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang", | ||
"Microsoft.VisualStudio.Workload.NativeDesktop", | ||
"Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre", | ||
"Component.Microsoft.Windows.DriverKit" | ||
], | ||
"extensions": [ | ||
"https://marketplace.visualstudio.com/items?itemName=WixToolset.WixToolsetVisualStudio2022Extension" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters