-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Rebuild as many projects as possible #51427
Conversation
@@ -32,7 +32,8 @@ | |||
<MicrosoftCodeAnalysisTestingVersion>1.0.1-beta1.20623.3</MicrosoftCodeAnalysisTestingVersion> | |||
<CodeStyleAnalyzerVersion>3.8.0</CodeStyleAnalyzerVersion> | |||
<VisualStudioEditorPackagesVersion>16.8.181</VisualStudioEditorPackagesVersion> | |||
<ILToolsPackageVersion>5.0.0-alpha1.19409.1</ILToolsPackageVersion> | |||
<ILAsmPackageVersion>5.0.0-alpha1.19409.1</ILAsmPackageVersion> | |||
<ILDAsmPackageVersion>5.0.0-preview.1.20112.8</ILDAsmPackageVersion> |
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 are we using different versions here?
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.
When I tried using the same, original version for both, NuGet complained me that it couldn’t find such a version of ildasm and chose the version that you see instead.
|
||
namespace BuildValidator | ||
{ | ||
public static class IldasmUtilities |
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.
public [](start = 4, length = 6)
internal
?
" --assembliesPath `"$ArtifactsDir/obj/PrepareTests`"" + | ||
" --assembliesPath `"$ArtifactsDir/obj/RunTests`"" + | ||
" --assembliesPath `"$ArtifactsDir/obj/vbc/$configuration/netcoreapp3.1`"" + | ||
" --assembliesPath `"$ArtifactsDir/obj/VBCSCompiler/$configuration/netcoreapp3.1`"" + |
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 modifies the rebuild leg to rebuild as many bits as possible.
This also introduces some changes to:
Results of rebuilding everything in Roslyn repo are detailed here: https://gist.github.com/RikkiGibson/77cad2adb2e35552aa2008834d6f69a5
Please take a look @tmat @jaredpar @cston