awesome-inc / FontAwesome.Sharp

A library for using Font Awesome in WPF & Windows Forms applications
Apache License 2.0
384 stars 89 forks source link

Application not runnig on another PC #50

Closed josdar closed 3 years ago

josdar commented 3 years ago

Do I need to install a font or something in the other PC if I want to run my application with the executable and not from Visual Studio.

mkoertgen commented 3 years ago

Hi @josdar ,

The free fontawesome fonts are embedded as resources into the compiled app so it can run anywhere without any font redistribution.

josdar commented 3 years ago

That's what I though, but it only launches if I include the FontAwesome.Sharp.dll in the same folder as the compile app

mkoertgen commented 3 years ago

Yes right. The FontAwesome.Sharp.dll contains the fonts and the code. Usually you would deploy the complete output directory, i.e. bin\Debug or bin\Release

josdar commented 3 years ago

Oh Ok thanks for the help