将 taglib-sharp 项目解决方案添加到我当前的 vb.net 解决方案中时遇到困难
大家好,我目前很难将最新的 taglib-sharp 解决方案添加到我当前的解决方案中,该解决方案包含 Visual Studios 2010 上的 vb.net 控制台项目。本质上,我想在 vb 中编写所有必需的内容,并使用 taglib-sharp 提取所有内容mp3 文件所需的标签。不幸的是,当我包含 taglib-sharp 的解决方案并执行必要的转换 Visual Studios 2008 到 2010 时,我收到一条错误,指出“无法将文件备份为 C:\temp\taglib-sharp-2.0.3.7-windows\taglib- Sharp-2.0.3.7-windows\Backup1\taglib-sharp.snk”。我尝试构建解决方案,但没有成功。我该如何解决这个问题?
坦率地说,如果我只想为我的 vb 程序使用这些库,我不确定是否需要打开解决方案。我是否需要解决方案才能使用“TagLib.File”等?
如果您想知道,我从 http://download.banshee 下载了这个库.fm/taglib-sharp/2.0.3.7/
Hey everyone, I'm currently having difficulty adding the latest taglib-sharp solution to my current solution which contains my vb.net console project on Visual Studios 2010. Essentially I want to code everything necessary in vb and use taglib-sharp to extract all tags needed from an mp3 file. Unfortunately, when I include the solution of taglib-sharp and perform the necessary conversion visual studios 2008 to 2010, I receive an error stating "Failed to backup file as C:\temp\taglib-sharp-2.0.3.7-windows\taglib-sharp-2.0.3.7-windows\Backup1\taglib-sharp.snk". I made an attempt to build the solution with no luck. How do I resolve this?
To be quite frank I'm not sure if I need to open the solution if I just want to use the libraries for my vb program. Do I need the solution in order to use for instance "TagLib.File"?
In case you're wondering, I downloaded this library from http://download.banshee.fm/taglib-sharp/2.0.3.7/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 NuGet 安装 taglib-sharp。 NuGet 是在 Visual Studio 中使用开源库的最佳且最简单的方法。您无需编译任何内容,也无需考虑项目和解决方案文件。
要安装 TagLib#,请在 Visual Studio 的包管理器控制台中运行以下命令。
taglib-sharp 的 NuGet 发行版可以在 http://nuget.org/packages/taglib 中找到。官方源代码存储库位于 https://github.com/mono/taglib-sharp。
I would recommend installing taglib-sharp with NuGet. NuGet is the best and easiest way to use opensource libraries in Visual Studio. You dont have to compile anything, and you don't need to think about projects and solutionfiles.
To install TagLib#, run the following command in the Package Manager Console in Visual Studio.
The NuGet distribution of taglib-sharp can be found at http://nuget.org/packages/taglib. The official source code repository is at https://github.com/mono/taglib-sharp.
如果您只需要使用这些库,请忽略备份,或者在 2008 年打开 TagLibSharp,编译 DLL,然后在 2010 年项目中引用它。
Either ignore the backup, or open TagLibSharp in 2008, compile the DLL and then reference it in your 2010 project if you only need to use the libraries.