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
path: root/mcs
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2017-05-16 13:31:19 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-05-16 13:31:51 +0300
commit5a82180366066abaeeb5af09db28dcfca0798033 (patch)
tree4b26988a19569f6d57162856a678fc177cd48611 /mcs
parentcb694fad373265412a8003731b90b595a83587a4 (diff)
[xbuild] Add web targets for 15.0 (#4868)
(cherry picked from commit 8077ff5da774bb771c896d6fdb40740f649975af)
Diffstat (limited to 'mcs')
-rw-r--r--mcs/tools/xbuild/Makefile14
1 files changed, 4 insertions, 10 deletions
diff --git a/mcs/tools/xbuild/Makefile b/mcs/tools/xbuild/Makefile
index 16f94f2fd61..93d925ff273 100644
--- a/mcs/tools/xbuild/Makefile
+++ b/mcs/tools/xbuild/Makefile
@@ -95,16 +95,10 @@ install-pcl-targets:
done
install-web-targets:
- $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/v9.0/WebApplications
- $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/v9.0/WebApplications
- $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/v10.0/WebApplications
- $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/v10.0/WebApplications
- $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/v11.0/WebApplications
- $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/v11.0/WebApplications
- $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/v12.0/WebApplications
- $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/v12.0/WebApplications
- $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/v14.0/WebApplications
- $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/v14.0/WebApplications
+ for VERSION in v9.0 v10.0 v11.0 v12.0 v14.0 v15.0; do \
+ $(MKINSTALLDIRS) $(DESTDIR)$(VS_TARGETS_DIR)/$$VERSION/WebApplications; \
+ $(INSTALL_DATA) targets/Microsoft.WebApplication.targets $(DESTDIR)$(VS_TARGETS_DIR)/$$VERSION/WebApplications; \
+ done
NUGET_BUILDTASKS_REPO_DIR=$(topdir)/../external/nuget-buildtasks