Makefile 307 B

12345678910111213
  1. all: build-sample
  2. build-sample:
  3. dotnet build HelloWorld
  4. # COREHOST_TRACE=1
  5. VERSION:=3.0.0-preview4-27514-06
  6. run:
  7. COMPlus_DebugWriteToStdErr=1 ../dotnet --fx-version "$(VERSION)" HelloWorld/bin/Debug/netcoreapp3.0/HelloWorld.dll
  8. clean:
  9. rm -rf sdk shared host dotnet LICENCE.txt ThirdPartyNotices.txt