https://github.com/anylisten/fishfm
《鱼声FM》是一款以发现音乐为核心的跨平台音乐软件,音乐类型主要偏纯音乐、后摇滚、电子乐、国风音乐等,如果你喜欢主要面向喜欢「鱼声音乐精选」公众号推荐的音乐,那么这个软件会让你发现更多宝藏音乐。
https://github.com/anylisten/fishfm
avaloniaui cross-platform discovery fm music music-player netcore
Last synced: about 1 month ago
JSON representation
《鱼声FM》是一款以发现音乐为核心的跨平台音乐软件,音乐类型主要偏纯音乐、后摇滚、电子乐、国风音乐等,如果你喜欢主要面向喜欢「鱼声音乐精选」公众号推荐的音乐,那么这个软件会让你发现更多宝藏音乐。
- Host: GitHub
- URL: https://github.com/anylisten/fishfm
- Owner: AnyListen
- Created: 2022-04-08T05:57:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T11:26:42.000Z (almost 3 years ago)
- Last Synced: 2025-03-21T01:34:28.650Z (about 1 month ago)
- Topics: avaloniaui, cross-platform, discovery, fm, music, music-player, netcore
- Language: C#
- Homepage:
- Size: 1.11 MB
- Stars: 26
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FishFM
A Cross Platform Music Discovery FM> 『鱼声FM』遇见属于你的声音
《鱼声FM》是一款以发现音乐为核心的跨平台音乐软件,音乐类型主要偏纯音乐、后摇滚、电子乐、国风音乐等,如果你喜欢主要面向喜欢「鱼声音乐精选」公众号推荐的音乐,那么这个软件会让你发现更多宝藏音乐。
目前仅支持PC端,支持Win、Linux、Mac,希望体验预览版的可以文末扫码入群。
下载链接: https://pan.baidu.com/s/18lu3-ltuZV0N1vzukbD5yg 提取码: updc

## 自助编译
### macos
运行以下命令,然后在`项目目录/bin/Release/publish`下可以找到 `FishFM.app`
```shell
~/.dotnet/dotnet restore -r osx-x64
~/.dotnet/dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-x64 -property:Configuration=Release -p:UseAppHost=true
```### win-x86
运行以下命令,然后在`项目目录/bin/Release/publish`下可以找到 `FishFM.app`
```shell
~/.dotnet/dotnet restore -r win-x86
~/.dotnet/dotnet publish -r win-x86 -c Release --self-contained true -property:Configuration=Release -p:UseAppHost=true -p:DebugSymbols=false
```