mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 02:33:33 +01:00
Update to 3.5.2 and .net core 2.1
This commit is contained in:
@@ -1,118 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.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')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
||||
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{4A4402D4-E910-443B-B8FC-2C18286A2CA0}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>OpenSubtitlesHandler</RootNamespace>
|
||||
<AssemblyName>OpenSubtitlesHandler</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
||||
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
</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' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Console\OSHConsole.cs" />
|
||||
<Compile Include="Interfaces\IMethodResponse.cs" />
|
||||
<Compile Include="Interfaces\MethodResponseAttr.cs" />
|
||||
<Compile Include="Languages\DetectLanguageResult.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseAddComment.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseAddRequest.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseAutoUpdate.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseCheckMovieHash.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseCheckMovieHash2.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseCheckSubHash.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseDetectLanguage.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseError.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseGetAvailableTranslations.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseGetComments.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseGetSubLanguages.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseGetTranslation.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseInsertMovie.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseInsertMovieHash.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseLogIn.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseMovieDetails.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseMovieSearch.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseNoOperation.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseReportWrongImdbMovie.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseReportWrongMovieHash.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseSearchToMail.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseServerInfo.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseSubtitleDownload.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseSubtitleSearch.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseSubtitlesVote.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseTryUploadSubtitles.cs" />
|
||||
<Compile Include="MethodResponses\MethodResponseUploadSubtitles.cs" />
|
||||
<Compile Include="MovieHasher.cs" />
|
||||
<Compile Include="Movies\CheckMovieHash2Data.cs" />
|
||||
<Compile Include="Movies\CheckMovieHash2Result.cs" />
|
||||
<Compile Include="Movies\CheckMovieHashResult.cs" />
|
||||
<Compile Include="Movies\InsertMovieHashParameters.cs" />
|
||||
<Compile Include="Movies\MovieSearchResult.cs" />
|
||||
<Compile Include="Movies\SearchToMailMovieParameter.cs" />
|
||||
<Compile Include="OpenSubtitles.cs" />
|
||||
<Compile Include="OtherTypes\GetAvailableTranslationsResult.cs" />
|
||||
<Compile Include="OtherTypes\GetCommentsResult.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="SubtitleTypes\CheckSubHashResult.cs" />
|
||||
<Compile Include="SubtitleTypes\SubtitleDownloadResult.cs" />
|
||||
<Compile Include="SubtitleTypes\SubtitleLanguage.cs" />
|
||||
<Compile Include="SubtitleTypes\SubtitleSearchParameters.cs" />
|
||||
<Compile Include="SubtitleTypes\SubtitleSearchResult.cs" />
|
||||
<Compile Include="SubtitleTypes\TryUploadSubtitlesParameters.cs" />
|
||||
<Compile Include="SubtitleTypes\UploadSubtitleInfoParameter.cs" />
|
||||
<Compile Include="SubtitleTypes\UploadSubtitleParameters.cs" />
|
||||
<Compile Include="Utilities.cs" />
|
||||
<Compile Include="XML-RPC\Enums\XmlRpcValueType.cs" />
|
||||
<Compile Include="XML-RPC\Types\XmlRpcMethodCall.cs" />
|
||||
<Compile Include="XML-RPC\Values\IXmlRpcValue.cs" />
|
||||
<Compile Include="XML-RPC\Values\XmlRpcStructMember.cs" />
|
||||
<Compile Include="XML-RPC\Values\XmlRpcValueArray.cs" />
|
||||
<Compile Include="XML-RPC\Values\XmlRpcValueBasic.cs" />
|
||||
<Compile Include="XML-RPC\Values\XmlRpcValueStruct.cs" />
|
||||
<Compile Include="XML-RPC\XmlRpcGenerator.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
|
||||
<Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
|
||||
<Name>MediaBrowser.Common</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
|
||||
<Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
|
||||
<Name>MediaBrowser.Model</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="XML-RPC\Docs\XML-RPC.txt" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.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>
|
||||
-->
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Target Name="EmitMSBuildWarning" BeforeTargets="Build">
|
||||
<Warning Text="Packages containing MSBuild targets and props files cannot be fully installed in projects targeting multiple frameworks. The MSBuild targets and props files have been ignored." />
|
||||
</Target>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user