-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Don't rebuild managed code on packaging time on Windows
Rebuilding the managed code on Windows causes it to want to use `msvcrt` instead of `c` when resolving `libc` p/invokes, which will cause the libc calls to fail on Unix. Download and extract the `Managed` artifact on packaging time, so that the assemblies built on Unix are properly packaged and not rebuilt.
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VersionPrefix>7.0.0</VersionPrefix> | ||
<PreReleaseVersionLabel>final</PreReleaseVersionLabel> | ||
<PreReleaseVersionIteration>1</PreReleaseVersionIteration> | ||
<VersionPrefix>7.0.1</VersionPrefix> | ||
<!-- <PreReleaseVersionLabel>final</PreReleaseVersionLabel> | ||
<PreReleaseVersionIteration>1</PreReleaseVersionIteration> --> | ||
</PropertyGroup> | ||
</Project> |