Skip to content

Commit

Permalink
Fix single-file publishing for the CLI 🐛☠️
Browse files Browse the repository at this point in the history
With the previous version, got this error when trying to run elm-fullstack.exe:
----
Error:
  An assembly specified in the application dependencies manifest (elm-fullstack.deps.json) was not found:
    package: 'LibGit2Sharp.NativeBinaries', version: '2.0.306'
    path: 'runtimes/win-x64/native/git2-106a5f2.pdb'

For context, see:

+ libgit2/libgit2sharp#1754 (comment)
+ dotnet/sdk#3685
  • Loading branch information
Viir committed May 18, 2020
1 parent 869fdcb commit 5d9c174
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions implement/elm-fullstack/elm-fullstack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<FileVersion>2020.0518.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.5.0" />
</ItemGroup>
Expand Down

0 comments on commit 5d9c174

Please sign in to comment.