jellyfin/MediaBrowser.MediaEncoding/MediaBrowser.MediaEncoding.csproj

111 lines
5 KiB
XML
Raw Normal View History

2014-03-27 20:30:21 +01:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0BD82FA6-EB8A-4452-8AF5-74F9C3849451}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MediaBrowser.MediaEncoding</RootNamespace>
<AssemblyName>MediaBrowser.MediaEncoding</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
2014-10-18 23:25:04 +02:00
<RestorePackages>true</RestorePackages>
2014-03-27 20:30:21 +01:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2014-11-05 20:28:41 +01:00
<DebugType>none</DebugType>
2014-03-27 20:30:21 +01:00
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
2014-04-10 17:06:54 +02:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Release Mono</OutputPath>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
2014-03-27 20:30:21 +01:00
<ItemGroup>
<Reference Include="BDInfo">
<HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\BDInfo.dll</HintPath>
</Reference>
<Reference Include="DvdLib">
<HintPath>..\packages\MediaBrowser.BdInfo.1.0.0.10\lib\net35\DvdLib.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
2015-01-10 20:42:14 +01:00
<Reference Include="UniversalDetector">
<HintPath>..\ThirdParty\UniversalDetector\UniversalDetector.dll</HintPath>
</Reference>
2014-03-27 20:30:21 +01:00
</ItemGroup>
<ItemGroup>
2014-07-09 16:39:04 +02:00
<Compile Include="..\SharedVersion.cs">
<Link>Properties\SharedVersion.cs</Link>
</Compile>
2014-03-27 20:30:21 +01:00
<Compile Include="BdInfo\BdInfoExaminer.cs" />
2014-12-21 20:40:37 +01:00
<Compile Include="Configuration\EncodingConfigurationFactory.cs" />
2015-01-02 06:36:27 +01:00
<Compile Include="Encoder\AudioEncoder.cs" />
<Compile Include="Encoder\BaseEncoder.cs" />
<Compile Include="Encoder\EncodingJob.cs" />
<Compile Include="Encoder\EncodingJobFactory.cs" />
<Compile Include="Encoder\EncodingUtils.cs" />
2015-01-02 06:36:27 +01:00
<Compile Include="Encoder\JobLogger.cs" />
2014-03-27 20:30:21 +01:00
<Compile Include="Encoder\MediaEncoder.cs" />
2015-01-02 07:12:58 +01:00
<Compile Include="Encoder\VideoEncoder.cs" />
2014-03-27 20:30:21 +01:00
<Compile Include="Properties\AssemblyInfo.cs" />
2014-05-05 16:45:45 +02:00
<Compile Include="Subtitles\ISubtitleParser.cs" />
2014-05-11 06:47:48 +02:00
<Compile Include="Subtitles\ISubtitleWriter.cs" />
2014-08-22 17:47:44 +02:00
<Compile Include="Subtitles\JsonWriter.cs" />
2014-08-31 20:28:20 +02:00
<Compile Include="Subtitles\ParserValues.cs" />
2014-05-05 16:45:45 +02:00
<Compile Include="Subtitles\SrtParser.cs" />
2014-06-11 22:57:18 +02:00
<Compile Include="Subtitles\SrtWriter.cs" />
2014-08-22 04:24:38 +02:00
<Compile Include="Subtitles\AssParser.cs" />
2014-05-05 16:45:45 +02:00
<Compile Include="Subtitles\SsaParser.cs" />
<Compile Include="Subtitles\SubtitleEncoder.cs" />
2014-05-07 04:28:19 +02:00
<Compile Include="Subtitles\SubtitleTrackInfo.cs" />
<Compile Include="Subtitles\TtmlWriter.cs" />
2014-05-11 06:47:48 +02:00
<Compile Include="Subtitles\VttWriter.cs" />
2014-03-27 20:30:21 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
<Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
<Name>MediaBrowser.Common</Name>
</ProjectReference>
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
<Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
<Name>MediaBrowser.Controller</Name>
</ProjectReference>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
<Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
<Name>MediaBrowser.Model</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
2014-05-05 16:45:45 +02:00
<ItemGroup />
2014-03-27 20:30:21 +01:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
2014-08-22 04:24:38 +02:00
</Project>