xamarin-macios/tools/bcl-test-importer/Makefile

15 строки
483 B
Makefile
Исходник Обычный вид История

CONFIGURATION ?= Debug
BCL_TEST_IMPORTER_SRC:=$(wildcard BCLTestImporter/*.cs)
all: BCLTestImporter.exe
BCLTestImporter.exe: $(BCL_TEST_IMPORTER_SRC) Makefile BCLTestImporter/BCLTestImporter.csproj
nuget restore BCLTestImporter/BCLTestImporter.sln
msbuild /p:Configuration=$(CONFIGURATION) BCLTestImporter/BCLTestImporter.sln
clean:
msbuild /target:Clean BCLTestImporter/BCLTestImporter.sln
@rm -Rf ./BCLTestImporter/bin
@rm -Rf ./BCLTestImporter/obj
@rm bcl-test-importer