Revert "[Facades] Build netstandard.dll with net_4_x profile by default"
[mono.git] / mcs / class / Facades / netstandard / Makefile
1 MCS_BUILD_DIR = ../../../build
2
3 thisdir = class/Facades/netstandard
4 SUBDIRS = 
5 include $(MCS_BUILD_DIR)/rules.make
6
7 LIBRARY_SUBDIR = Facades
8 LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)/Facades
9
10 LIBRARY = netstandard.dll
11
12 KEY_FILE = ../../msfinal.pub
13 SIGN_FLAGS = /delaysign /keyfile:$(KEY_FILE) /nowarn:1616,1699 /nowarn:618
14 LIB_REFS = System System.Xml System.Xml.Linq System.Runtime.Serialization System.Core System.Numerics System.Numerics.Vectors System.Net.Http System.Transactions \
15 System.IO.Compression System.Data System.ComponentModel.Composition System.IO.Compression.FileSystem \
16 Facades/System.Security.Cryptography.Algorithms Facades/System.Globalization.Extensions Facades/System.Data.Common \
17 Facades/System.Diagnostics.StackTrace Facades/System.Runtime.Serialization.Xml Facades/System.Runtime.Serialization.Primitives \
18 Facades/System.Security.SecureString Facades/System.Threading.Overlapped Facades/System.Xml.XPath.XDocument
19
20 ifeq (2.1, $(FRAMEWORK_VERSION))
21 LIB_REFS += System.Web.Services
22 else
23 LIB_REFS += System.Web System.Drawing
24 endif
25
26 LIB_MCS_FLAGS = $(SIGN_FLAGS)
27
28 PLATFORM_DEBUG_FLAGS =
29
30 NO_TEST = yes
31
32 include $(MCS_BUILD_DIR)/library.make
33
34