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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-27 01:17:31 +0300
committerGitHub <noreply@github.com>2019-07-27 01:17:31 +0300
commitae488c93e94e326fde066d78fb4311b149f30825 (patch)
tree5ed8f421a72fb6dc5881cf838a74235c276ac3eb /configure.ac
parentdc16db91a17f557290d97ad99efbca9ba22736bf (diff)
[netcore] Fix building of nupkg (#15855)
When https://github.com/mono/mono/commit/9010d2f290d28dc97ac276e0c0d32a2932b7550f was merged we stopped including mcs/build/config.make. However, that file set the VERSION variable which wasn't migrated to the new netcore/config.make so the nuget package missed the version. Additionally, System.Private.CoreLib sources were moved into the netcore folder and we now seemingly need to pass `-p:IsPackable=true` for dotnet pack to build the nuget package.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cab608fa44f..39f95481dc0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6936,6 +6936,7 @@ if test x$buildsgen = xyes; then
fi
if test "x$with_core" == "xonly"; then
+ echo "VERSION = $VERSION" > netcore/config.make
echo "RID = $RID" >> netcore/config.make
echo "COREARCH = $COREARCH" >> netcore/config.make
echo "CORETARGETS = $CORETARGETS" >> netcore/config.make