Skip to content

Commit

Permalink
Fix pack as tool only supporting single target
Browse files Browse the repository at this point in the history
  • Loading branch information
7sharp9 committed Oct 26, 2021
1 parent 324f7bb commit eaf9cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Myriad/Myriad.fsproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<PackAsTool Condition="$(TargetFramework) == 'net5.0'">true</PackAsTool>
<ToolCommandName>myriad</ToolCommandName>
<Description>Myriad CLI tool</Description>
<DebugType>embedded</DebugType>
Expand Down

0 comments on commit eaf9cda

Please sign in to comment.