-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed major error when restoring package via MSBuild after 4b61116
``` msbuild ClassLibrary1.sln /t:Build ``` It was because of unevaluated value from imported nodes. For clarify, it should be evaluated in first build step, then MSBuild will cache this evaluated values (ref~ `<prjfile>.CoreCompileInputs.cache`), then it will work fine (i.e. only for second builds). No problems for local scope, but it also can be like: ``` DllExport -action Restore & msbuild ClassLibrary1.sln /t:Build ``` Well, this commit just avoids global scope in `Reference` item. +Also fixed DXP_PE_CHECK for allocator.
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 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
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