mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
taglib-sharp now builds
This commit is contained in:
36
taglib-sharp/src/AssemblyInfo.cs
Normal file
36
taglib-sharp/src/AssemblyInfo.cs
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
//
|
||||||
|
// AssemblyInfo.cs.in: Contains flags to use for the assembly.
|
||||||
|
//
|
||||||
|
// Author:
|
||||||
|
// Brian Nickel (brian.nickel@gmail.com)
|
||||||
|
//
|
||||||
|
// Copyright (C) 2006-2007 Brian Nickel
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Lesser General Public License version
|
||||||
|
// 2.1 as published by the Free Software Foundation.
|
||||||
|
//
|
||||||
|
// This library is distributed in the hope that it will be useful, but
|
||||||
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
// Lesser General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public
|
||||||
|
// License along with this library; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||||
|
// USA
|
||||||
|
//
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
[assembly:AssemblyVersion("2.0.4.0")]
|
||||||
|
[assembly:AssemblyTitle ("TagLib#")]
|
||||||
|
[assembly:AssemblyDescription ("A library for reading and writing audio metatags.")]
|
||||||
|
[assembly:AssemblyCopyright ("Copyright (c) 2006-2007 Brian Nickel. Copyright (c) 2009-2010 Other contributors")]
|
||||||
|
[assembly:AssemblyCompany ("")]
|
||||||
|
[assembly:AssemblyDelaySign(false)]
|
||||||
|
[assembly:AssemblyKeyFile("taglib-sharp.snk")]
|
||||||
|
[assembly:CLSCompliant(false)]
|
||||||
@@ -25,6 +25,15 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Xml;
|
using System.Xml;
|
||||||
|
|
||||||
|
namespace System.Runtime.CompilerServices
|
||||||
|
{
|
||||||
|
[AttributeUsageAttribute(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
|
||||||
|
internal sealed class ExtensionAttribute : Attribute
|
||||||
|
{
|
||||||
|
public ExtensionAttribute() { }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace TagLib.Xmp
|
namespace TagLib.Xmp
|
||||||
{
|
{
|
||||||
internal static class XmlNodeExtensions
|
internal static class XmlNodeExtensions
|
||||||
|
|||||||
10
taglib-sharp/src/policy.2.0.taglib-sharp.config
Normal file
10
taglib-sharp/src/policy.2.0.taglib-sharp.config
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<configuration>
|
||||||
|
<runtime>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="taglib-sharp publicKeyToken="db62eba44689b5b0" />
|
||||||
|
<bindingRedirect oldVersion="2.0.0.0-2.0.4.0" newVersion="2.0.4.0"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
</runtime>
|
||||||
|
</configuration>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
@@ -8,10 +8,17 @@
|
|||||||
<ProjectGuid>{6B143A39-C7B2-4743-9917-92262C60E9A6}</ProjectGuid>
|
<ProjectGuid>{6B143A39-C7B2-4743-9917-92262C60E9A6}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>TagLib</RootNamespace>
|
<RootNamespace>TagLib</RootNamespace>
|
||||||
<ApplicationIcon>.</ApplicationIcon>
|
<ApplicationIcon>
|
||||||
|
</ApplicationIcon>
|
||||||
<AssemblyName>taglib-sharp</AssemblyName>
|
<AssemblyName>taglib-sharp</AssemblyName>
|
||||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||||
<ReleaseVersion>2.0.4.0</ReleaseVersion>
|
<ReleaseVersion>2.0.4.0</ReleaseVersion>
|
||||||
|
<FileUpgradeFlags>
|
||||||
|
</FileUpgradeFlags>
|
||||||
|
<UpgradeBackupLocation>
|
||||||
|
</UpgradeBackupLocation>
|
||||||
|
<OldToolsVersion>3.5</OldToolsVersion>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@@ -27,11 +34,12 @@
|
|||||||
<Execution clr-version="Net_2_0" />
|
<Execution clr-version="Net_2_0" />
|
||||||
</Execution>
|
</Execution>
|
||||||
<DefineConstants>HAVE_SHARPZIPLIB</DefineConstants>
|
<DefineConstants>HAVE_SHARPZIPLIB</DefineConstants>
|
||||||
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>.</OutputPath>
|
<OutputPath>..\..\bin\Release\</OutputPath>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
||||||
@@ -39,6 +47,7 @@
|
|||||||
<Execution>
|
<Execution>
|
||||||
<Execution clr-version="Net_2_0" />
|
<Execution clr-version="Net_2_0" />
|
||||||
</Execution>
|
</Execution>
|
||||||
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="AssemblyInfo.cs" />
|
<Compile Include="AssemblyInfo.cs" />
|
||||||
@@ -269,19 +278,13 @@
|
|||||||
<Compile Include="TagLib\Xmp\XmpNodeVisitor.cs" />
|
<Compile Include="TagLib\Xmp\XmpNodeVisitor.cs" />
|
||||||
<Compile Include="TagLib\Xmp\XmpTag.cs" />
|
<Compile Include="TagLib\Xmp\XmpTag.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="TagLib\NonContainer\" />
|
<Reference Include="ICSharpCode.SharpZipLib">
|
||||||
<Folder Include="TagLib\Ogg\Codecs\" />
|
<HintPath>..\..\ThirdParty\ICSharpCode.SharpZipLib.dll</HintPath>
|
||||||
<Folder Include="TagLib\Riff\" />
|
</Reference>
|
||||||
<Folder Include="TagLib\Id3v2\" />
|
|
||||||
<Folder Include="TagLib\Mpeg4\" />
|
|
||||||
<Folder Include="TagLib\Ogg\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="ICSharpCode.SharpZipLib" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
BIN
taglib-sharp/src/taglib-sharp.snk
Normal file
BIN
taglib-sharp/src/taglib-sharp.snk
Normal file
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
# Visual Studio 2008
|
# Visual Studio 2010
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "taglib-sharp", "src\taglib-sharp.csproj", "{6B143A39-C7B2-4743-9917-92262C60E9A6}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "taglib-sharp", "src\taglib-sharp.csproj", "{6B143A39-C7B2-4743-9917-92262C60E9A6}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tests", "tests\tests.csproj", "{4D1C6110-D6F2-496E-BD7E-E45B7217D458}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tests", "tests\tests.csproj", "{4D1C6110-D6F2-496E-BD7E-E45B7217D458}"
|
||||||
@@ -20,6 +20,9 @@ Global
|
|||||||
{4D1C6110-D6F2-496E-BD7E-E45B7217D458}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{4D1C6110-D6F2-496E-BD7E-E45B7217D458}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{4D1C6110-D6F2-496E-BD7E-E45B7217D458}.Release|Any CPU.Build.0 = Release|Any CPU
|
{4D1C6110-D6F2-496E-BD7E-E45B7217D458}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
GlobalSection(MonoDevelopProperties) = preSolution
|
GlobalSection(MonoDevelopProperties) = preSolution
|
||||||
StartupItem = tests\tests.csproj
|
StartupItem = tests\tests.csproj
|
||||||
Policies = $0
|
Policies = $0
|
||||||
|
|||||||
Reference in New Issue
Block a user