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>2017-08-11 17:22:02 +0300
committerGitHub <noreply@github.com>2017-08-11 17:22:02 +0300
commitbf8cc86306c0684b2abde61feef1e5b11cf3f395 (patch)
treebfdd038e28f3517cc7375241b771d8c7efa0b70a /mcs/class/System.Web
parent5b2ac5b1d9a18866816282b0f459cd699a325ba3 (diff)
[bcl] Clean up FRAMEWORK_VERSION 4.0 and 2.0 checks (#5356)
We don't build those profiles anymore, we have a net_4_x configuration instead.
Diffstat (limited to 'mcs/class/System.Web')
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_01/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_02/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_03/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_04/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_05/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_06/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_08/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_01/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_02/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_03/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_04/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_05/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_06/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_07/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_08/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_09/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/PageParserDefaultTypeProperties/Makefile2
-rw-r--r--mcs/class/System.Web/Test/standalone/RegisterBuildProvider/Makefile2
19 files changed, 19 insertions, 19 deletions
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_01/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_01/Makefile
index 1c82c534157..b40292afb48 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_01/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_01/Makefile
@@ -24,7 +24,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_02/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_02/Makefile
index 3910e004204..7b4716e23dc 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_02/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_02/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_03/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_03/Makefile
index cf8e0f5f743..f83a2bae241 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_03/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_03/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_04/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_04/Makefile
index ff0172cd7a4..ec8ceca2bda 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_04/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_04/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_05/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_05/Makefile
index f9c8780885e..b805579fcb6 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_05/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_05/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_06/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_06/Makefile
index a1b5012d9a2..f87fe645151 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_06/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_06/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07/Makefile
index 61033858088..b23bc982b3d 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_08/Makefile b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_08/Makefile
index ba345317aaf..a4126832136 100644
--- a/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_08/Makefile
+++ b/mcs/class/System.Web/Test/standalone/ApplicationPreStartMethods/test_08/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_01/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_01/Makefile
index 17464eb5c6a..f0d1399fa1e 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_01/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_01/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_02/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_02/Makefile
index 5ebdf8d62b2..267882d694a 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_02/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_02/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_03/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_03/Makefile
index a1c22ea4a64..eed4f1273a3 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_03/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_03/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_04/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_04/Makefile
index ed1c11f82a0..8c721a8d73a 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_04/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_04/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_05/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_05/Makefile
index 1c62f879d54..264c7feff45 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_05/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_05/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_06/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_06/Makefile
index 0b88be3c34d..a9dc48eb787 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_06/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_06/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_07/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_07/Makefile
index d912fce274e..fb0fd1e3410 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_07/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_07/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_08/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_08/Makefile
index 667e288b3e8..71a45db3a6e 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_08/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_08/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_09/Makefile b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_09/Makefile
index 228532c1b45..8a259651aaf 100644
--- a/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_09/Makefile
+++ b/mcs/class/System.Web/Test/standalone/EnableFormsAuthentication/Test_09/Makefile
@@ -12,7 +12,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/PageParserDefaultTypeProperties/Makefile b/mcs/class/System.Web/Test/standalone/PageParserDefaultTypeProperties/Makefile
index 34938ef1d17..a75e30d7926 100644
--- a/mcs/class/System.Web/Test/standalone/PageParserDefaultTypeProperties/Makefile
+++ b/mcs/class/System.Web/Test/standalone/PageParserDefaultTypeProperties/Makefile
@@ -13,7 +13,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all:
diff --git a/mcs/class/System.Web/Test/standalone/RegisterBuildProvider/Makefile b/mcs/class/System.Web/Test/standalone/RegisterBuildProvider/Makefile
index 0809ee737b6..f0452d73e63 100644
--- a/mcs/class/System.Web/Test/standalone/RegisterBuildProvider/Makefile
+++ b/mcs/class/System.Web/Test/standalone/RegisterBuildProvider/Makefile
@@ -14,7 +14,7 @@ APPLICATION_ASSEMBLY_MCS_FLAGS = \
-debug:full \
-r:System.Web.dll
-VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
ifndef VALID_PROFILE
all: