-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Enable prebuilt detection #47894
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
Merged
Merged
Enable prebuilt detection #47894
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
9ebb5b4
Enable prebuilt detection
mmitche c758d55
Remove WorkaroundsImported.targets
mmitche 7ddef8f
Merge remote-tracking branch 'upstream/main' into enable-prebuilt-det…
mmitche 97f4918
Fixups
mmitche 96e8ea9
Merge branch 'main' into enable-prebuilt-detection
mmitche 57f6b68
Fixups
mmitche 994b203
Update coherency and property groups
mmitche bb255c5
Add version element for SystemSecurityCrytographyXml for repo tasks
mmitche fb40fc8
Merge branch 'main' into enable-prebuilt-detection
mmitche 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
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 |
---|---|---|
@@ -1,5 +1,27 @@ | ||
<UsageData> | ||
<IgnorePatterns> | ||
<UsagePattern IdentityGlob="*/*" /> | ||
<UsagePattern IdentityGlob="Microsoft.SourceBuild.Intermediate.*/*" /> | ||
|
||
<!-- These are used in-build for repo-tasks and should come from previously source built --> | ||
<UsagePattern IdentityGlob="NuGet.Common/*6.2.2*" /> | ||
<UsagePattern IdentityGlob="NuGet.Configuration/*6.2.2*" /> | ||
<UsagePattern IdentityGlob="NuGet.Frameworks/*6.2.2*" /> | ||
<UsagePattern IdentityGlob="NuGet.Packaging/*6.2.2*" /> | ||
<UsagePattern IdentityGlob="NuGet.Versioning/*6.2.2*" /> | ||
|
||
<!-- These are what the analyzers are built against. They are overridden in full source build. | ||
It may be possible to generate SBRPs --> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.Analyzers/*2.9.4*" /> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.AnalyzerUtilities/*3.3.0*" /> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.Common/*3.3.1*" /> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.CSharp/*3.3.1*" /> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.CSharp.Workspaces/*3.3.1*" /> | ||
<UsagePattern IdentityGlob="Microsoft.CodeAnalysis.Workspaces.Common/*3.3.1*" /> | ||
<UsagePattern IdentityGlob="System.Composition/*1.0.31*" /> | ||
<UsagePattern IdentityGlob="System.Threading.Tasks.Extensions/*4.5.3*" /> | ||
|
||
<!-- These are coming in via runtime but the source-build infra isn't able to automatically pick up the right intermediate. --> | ||
<UsagePattern IdentityGlob="Microsoft.NET.ILLink.Tasks/*8.0.*" /> | ||
<UsagePattern IdentityGlob="Microsoft.NETCore.App.Crossgen2.linux-x64/*8.0.*" /> | ||
</IgnorePatterns> | ||
</UsageData> |
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 was deleted.
Oops, something went wrong.
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will we have to maintain these hardcoded versions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use the versions from
Versions.props
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't loaded by msbuild. They will need to be maintained, but I assume they will not update too often.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will we see an error if we update the related package versions but don't update these? Want to make sure we don't let it fall behind