Clean up
authorEgorBo <egorbo@gmail.com>
Sun, 2 Feb 2020 23:21:34 +0000 (02:21 +0300)
committerEgorBo <egorbo@gmail.com>
Sun, 2 Feb 2020 23:21:34 +0000 (02:21 +0300)
src/mono/mono.proj
src/mono/netcore/Makefile

index 44e66828a517933755814360b1b05da52a6e2410..a8a994c6bd01a60b60f66a9465547cf6e24c20de 100644 (file)
     <Error Condition="!Exists('$(TestHostPath)')" Text="'$(TestHostPath)' doesn't exist. Try to set Configuration, OSGroup and Platform variables if neccesary." />
   </Target>
 
-  <Target Name="Foo">
-    <Message Importance="High" Text="Fooo: $(OSGroup).$(Platform).$(Configuration)" />
-  </Target>
-
 </Project>
index 5461dea855e99e67d9c11e05bca4ad4260e9ec71..ad38facd3756e74beb269b2567eb4dd5b25a752f 100644 (file)
@@ -1,18 +1,12 @@
 DOTNET=../../../.dotnet/dotnet
 TESTHOST_PATH=../../../artifacts/bin/testhost/
 
-CONFIGURATION=
-OS_GROUP=
-PLATFORM=
-
 # let's check ../../../artifacts/bin/testhost/ for available configurations
 # it's expected to see there only a single config, e.g. "netcoreapp5.0-OSX-Release-x64"
 # otherwise you have to set these variables for desired config
 ifeq ($(words $(wildcard $(TESTHOST_PATH)/*)), 1)
        TESTHOST_CFG := $(subst -, ,$(notdir $(wildcard $(TESTHOST_PATH)/*)))
-       OS_GROUP := $(word 2,$(TESTHOST_CFG))
        CONFIGURATION := $(word 3,$(TESTHOST_CFG))
-       PLATFORM := $(word 4,$(TESTHOST_CFG))
 endif
 
 check-config: