English 中文(简体)
在将taglib sharp项目解决方案添加到我当前的vb.net解决方案时遇到困难
原标题:Having difficulties adding taglib-sharp project solution to my current vb.net solution

大家好,我目前很难将最新的taglib sharp解决方案添加到我当前的解决方案中,该解决方案包含我在Visual Studios 2010上的vb.net控制台项目。本质上,我想在vb中编写所有必要的代码,并使用taglibsharp从mp3文件中提取所有需要的标签。不幸的是,当我包含taglib-sharp的解决方案并执行从2008年到2010年的必要转换时,我收到一个错误,称“无法将文件备份为C:emp aglib-sharp-2.3.7-windows-aglib-sharp-2.3.7-windowsBackup1 aglib-ssharp.snk”。我试图构建该解决方案,但没有成功。我该如何解决此问题?

坦率地说,如果我只想使用vb程序的库,我不确定是否需要打开解决方案。我需要解决方案来使用例如“TagLib.File”吗?

如果您想知道,我从http://download.banshee.fm/taglib-sharp/2.0.3.7/

最佳回答

忽略备份,或者在2008年打开TagLibSharp,编译DLL,然后在2010年的项目中引用它(如果您只需要使用库)。

问题回答

我建议使用NuGet安装taglib sharp。NuGet是在Visual Studio中使用开源库的最佳且最简单的方法。你不需要编译任何东西,也不需要考虑项目和解决方案文件。

若要安装TagLib#,请在Visual Studio的包管理器控制台中运行以下命令。

PM> Install-Package taglib

taglib sharp的NuGet分布可以在http://nuget.org/packages/taglib。官方源代码存储库位于https://github.com/mono/taglib-sharp





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签