Skip to content

Commit fe1e48d

Browse files
author
Eirik Tsarpalis
committed
IsPackable=false
1 parent 385514a commit fe1e48d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
SOURCE_DIRECTORY := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
2+
13
Configuration ?= Release
4+
Output ?= "$(SOURCE_DIRECTORY)/artifacts"
25
.DEFAULT_GOAL := test
36

47
all: clean build test pack
58

69
clean:
7-
dotnet clean
10+
dotnet clean && rm -rf $(Output)
811

912
build:
1013
dotnet build -c $(Configuration)
@@ -13,4 +16,4 @@ test: build
1316
dotnet test --no-build -c $(Configuration)
1417

1518
pack: build
16-
dotnet pack --no-build -c $(Configuration)
19+
dotnet pack --no-build -c $(Configuration) -o $(Output)

tests/UnitsOfMeasure.Extra.Tests.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67

78
<ItemGroup>

0 commit comments

Comments
 (0)