Skip to content

Commit 5cab9f1

Browse files
committed
correctly specify which project to pack and which to publish
1 parent 7c27348 commit 5cab9f1

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<Nullable>enable</Nullable>
88
<Version>1.0.0-dev</Version>
99
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
10+
<IsPackable>False</IsPackable>
11+
<IsPublishable>False</IsPublishable>
1012
</PropertyGroup>
1113

1214
</Project>

src/Client/Client.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<AssemblyName>Beefweb.Client</AssemblyName>
55
<RootNamespace>Beefweb.Client</RootNamespace>
66
<DocumentationFile>$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
7+
<IsPackable>True</IsPackable>
78
</PropertyGroup>
89

910
</Project>

src/CommandLineTool/CommandLineTool.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<AssemblyName>beefctl</AssemblyName>
55
<RootNamespace>Beefweb.CommandLineTool</RootNamespace>
66
<OutputType>Exe</OutputType>
7+
<IsPublishable>True</IsPublishable>
78
</PropertyGroup>
89

910
<ItemGroup>

tests/Directory.Build.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
<PropertyGroup>
66
<OutputPath>$(SolutionRoot)artifacts\tests</OutputPath>
77
<BaseIntermediateOutputPath>$(SolutionRoot)artifacts\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
8-
<IsPackable>False</IsPackable>
9-
<IsPublishable>False</IsPublishable>
108
</PropertyGroup>
119

1210
</Project>

0 commit comments

Comments
 (0)