-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Various SDK build fixes within VS #49748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MiYanni
wants to merge
9
commits into
dotnet:main
Choose a base branch
from
MiYanni:VariousSDKInVSBuildFixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
eea8724
Added the .vsconfig file to the repo.
MiYanni f550b25
Renamed manifest-packages.proj to .csproj for VS compatibility. Added…
MiYanni 4da4500
Added script to allow copying the runtime to Program Files when neces…
MiYanni c8e4fca
Merge branch 'main' into AddVSConfig
MiYanni 8b67a9f
Merge branch 'AddVSConfig' into VariousSDKInVSBuildFixes
MiYanni da36475
Added comment to GetTargetPath.
MiYanni a5d2f36
Merge branch 'main' into AddVSConfig
MiYanni ad74c54
Merge branch 'AddVSConfig' into VariousSDKInVSBuildFixes
MiYanni 4f9db44
Removed copy-runtime.ps1 since it isn't good practice. Minor whitespa…
MiYanni File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,70 @@ | ||
{ | ||
"version": "1.0", | ||
"components": [ | ||
"Microsoft.VisualStudio.Component.Roslyn.Compiler", | ||
"Microsoft.Component.MSBuild", | ||
"Microsoft.VisualStudio.Component.Roslyn.LanguageServices", | ||
"Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime", | ||
"Microsoft.VisualStudio.Component.SQL.CLR", | ||
"Microsoft.VisualStudio.Component.CoreEditor", | ||
"Microsoft.VisualStudio.Workload.CoreEditor", | ||
"Microsoft.Net.Component.4.8.SDK", | ||
"Microsoft.Net.Component.4.7.2.TargetingPack", | ||
"Microsoft.Net.ComponentGroup.DevelopmentPrerequisites", | ||
"Microsoft.VisualStudio.Component.TypeScript.TSServer", | ||
"Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions", | ||
"Microsoft.VisualStudio.Component.JavaScript.TypeScript", | ||
"Microsoft.VisualStudio.Component.TextTemplating", | ||
"Microsoft.VisualStudio.Component.NuGet", | ||
"Microsoft.Component.ClickOnce", | ||
"Microsoft.VisualStudio.Component.ManagedDesktop.Core", | ||
"Microsoft.NetCore.Component.Runtime.10.0", | ||
"Microsoft.NetCore.Component.SDK", | ||
"Microsoft.VisualStudio.Component.FSharp", | ||
"Microsoft.ComponentGroup.ClickOnce.Publish", | ||
"Microsoft.NetCore.Component.DevelopmentTools", | ||
"Microsoft.Net.Component.4.8.TargetingPack", | ||
"Microsoft.Net.ComponentGroup.4.8.DeveloperTools", | ||
"Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd", | ||
"Microsoft.VisualStudio.Component.DiagnosticTools", | ||
"Microsoft.VisualStudio.Component.EntityFramework", | ||
"Microsoft.VisualStudio.Component.LiveUnitTesting", | ||
"Microsoft.VisualStudio.Component.Debugger.JustInTime", | ||
"Component.Microsoft.VisualStudio.LiveShare.2022", | ||
"Microsoft.VisualStudio.Component.IntelliCode", | ||
"Component.VisualStudio.GitHub.Copilot", | ||
"Microsoft.VisualStudio.Component.ClassDesigner", | ||
"Microsoft.VisualStudio.Component.GraphDocument", | ||
"Microsoft.VisualStudio.Component.CodeMap", | ||
"Microsoft.VisualStudio.Component.VC.CoreIde", | ||
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64", | ||
"Microsoft.VisualStudio.Component.Graphics.Tools", | ||
"Microsoft.VisualStudio.Component.VC.DiagnosticTools", | ||
"Microsoft.VisualStudio.Component.Windows11SDK.26100", | ||
"Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites", | ||
"Microsoft.VisualStudio.Component.DotNetModelBuilder", | ||
"Microsoft.ComponentGroup.Blend", | ||
"Microsoft.VisualStudio.Component.Debugger.VsDbgExe", | ||
"Microsoft.VisualStudio.Workload.ManagedDesktop", | ||
"Microsoft.VisualStudio.Component.VC.ATL", | ||
"Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native", | ||
"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.Workload.NativeDesktop", | ||
"Microsoft.NetCore.Component.Runtime.8.0", | ||
"Microsoft.Net.Component.4.6.TargetingPack", | ||
"Microsoft.VisualStudio.Component.VSSDK", | ||
"Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites", | ||
"Microsoft.Component.CodeAnalysis.SDK", | ||
"Microsoft.VisualStudio.Workload.VisualStudioExtension" | ||
], | ||
"extensions": [] | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
1 change: 1 addition & 0 deletions
1
...orkloads/Manifests/manifest-packages.proj → ...kloads/Manifests/manifest-packages.csproj
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -16,12 +16,12 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Moq" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="$(RepoRoot)src\Compatibility\ApiCompat\Microsoft.DotNet.PackageValidation\Microsoft.DotNet.PackageValidation.csproj" /> | ||
<ProjectReference Include="..\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just moved this into the ItemGroup that is for PackageReferences. Not sure why it was here to begin with. |
||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.