You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- move `_InstallFrameworkIntoLocalDotNet` earlier because other builds depend on this part
- this target sometimes executes after dependent projects continue
- add `DependsOnTargets` attributes to further constrain ordering
nit: `IncludeFrameworkListFile` should run before `_ResolveSharedFrameworkContent`
Copy file name to clipboardExpand all lines: src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj
+10-7
Original file line number
Diff line number
Diff line change
@@ -176,14 +176,14 @@ This package is an internal implementation of the .NET Core SDK and is not meant
176
176
GenerateSharedFxDepsFile;
177
177
GenerateSharedFxVersionsFiles;
178
178
Crossgen;
179
-
_ResolveSharedFrameworkContent;
180
179
IncludeFrameworkListFile;
180
+
_ResolveSharedFrameworkContent;
181
+
_InstallFrameworkIntoLocalDotNet;
181
182
_DownloadAndExtractDotNetRuntime;
182
183
_BatchCopyToSharedFrameworkLayout;
183
184
_BatchCopyToRedistLayout;
184
185
_CreateInternalSharedFxArchive;
185
186
_CreateRedistSharedFxArchive;
186
-
_InstallFrameworkIntoLocalDotNet;
187
187
</CoreBuildDependsOn>
188
188
<CrossGenDependsOn>
189
189
ResolveReferences;
@@ -485,8 +485,9 @@ This package is an internal implementation of the .NET Core SDK and is not meant
485
485
486
486
<!-- Required to workaround https://github.com/dotnet/core-setup/issues/4809. This copies the shared framework into the $reporoot/.dotnet folder so tests can run against the shared framework. -->
487
487
<!-- This workaround is not needed in source build -->
0 commit comments