Skip to content

Commit

Permalink
Merge pull request #395 from tannergooding/main
Browse files Browse the repository at this point in the history
Ensure System.CommandLine is included in the tool package
  • Loading branch information
tannergooding authored Sep 24, 2022
2 parents 4ded4a2 + 99bbed1 commit 617c1ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath>
<Product>ClangSharp</Product>
<RootNamespace>ClangSharp</RootNamespace>
<VersionPrefix>15.0.0</VersionPrefix>
<VersionPrefix>15.0.1</VersionPrefix>
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">rc1</VersionSuffix>
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(ContinuousIntegrationBuild)' == 'true'">
<PackAsTool>true</PackAsTool>
<RuntimeIdentifier></RuntimeIdentifier>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand All @@ -22,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.CommandLine" GeneratePathProperty="true" PrivateAssets="all" />
<PackageReference Include="System.CommandLine" GeneratePathProperty="true" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 617c1ec

Please sign in to comment.