Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2020-04-25 15:32:49 +0300
committerGitHub <noreply@github.com>2020-04-25 15:32:49 +0300
commitab7ef9b2924e4056680c1fd9372923a00bb91199 (patch)
tree14f44424ae7abae82a708fe3aecfd82e86479be8 /eng/native
parent890fab0a640503201eed977f8710f23ce78987b6 (diff)
CoreCLR versions cleanup (#35327)
- Use current version numbers everywhere - Use product version (e.g. 5.0.0) for all user facing versions - Use file version (e.g. 5.0.20.21010) only when the exact version information is required - Reduce number of layers of version macro definitions
Diffstat (limited to 'eng/native')
-rwxr-xr-xeng/native/build-commons.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/eng/native/build-commons.sh b/eng/native/build-commons.sh
index a1a975ce177..14839cbbd98 100755
--- a/eng/native/build-commons.sh
+++ b/eng/native/build-commons.sh
@@ -95,7 +95,8 @@ build_native()
if [[ "$__SkipGenerateVersion" == 0 ]]; then
"$__RepoRootDir/eng/common/msbuild.sh" /clp:nosummary "$__ArcadeScriptArgs" "$__RepoRootDir"/eng/empty.csproj \
/p:NativeVersionFile="$__versionSourceFile" \
- /t:GenerateNativeVersionFile /restore \
+ /p:RuntimeVersionFile="$intermediatesDir/../runtime_version.h" \
+ /t:GenerateRuntimeVersionFile /restore \
$__CommonMSBuildArgs $__binlogArg $__UnprocessedBuildArgs
local exit_code="$?"
if [[ "$exit_code" != 0 ]]; then