tytd-server/youtube-downloader.csproj

142 lines
7.0 KiB
XML
Raw Normal View History

2021-08-25 09:11:08 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2021-06-24 01:10:20 +00:00
<PropertyGroup>
2021-06-24 01:49:05 +00:00
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
2021-08-25 09:11:08 +00:00
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{E26F8159-6B4B-4660-A7A4-D0333DFEF0DD}</ProjectGuid>
2021-06-24 01:10:20 +00:00
<OutputType>Exe</OutputType>
2021-08-25 09:11:08 +00:00
<RootNamespace>youtubedownloader</RootNamespace>
2021-06-24 01:49:05 +00:00
<AssemblyName>youtube-downloader</AssemblyName>
2021-08-25 09:11:08 +00:00
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
2021-06-24 01:10:20 +00:00
</PropertyGroup>
2021-08-25 09:11:08 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2021-06-24 01:49:05 +00:00
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
2021-08-25 09:11:08 +00:00
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
2021-06-24 01:49:05 +00:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2021-08-25 09:11:08 +00:00
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
2021-06-24 01:49:05 +00:00
</PropertyGroup>
2021-08-25 09:11:08 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
2021-06-24 01:49:05 +00:00
<Optimize>true</Optimize>
2021-08-25 09:11:08 +00:00
<OutputPath>bin\Release</OutputPath>
2021-06-24 01:49:05 +00:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2021-08-25 09:11:08 +00:00
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
2021-06-24 01:49:05 +00:00
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
2021-08-25 09:11:08 +00:00
<Reference Include="Newtonsoft.Json">
<HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
2021-06-25 08:30:45 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="System.Buffers">
<HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
2021-06-25 08:30:45 +00:00
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="mscorlib" />
2021-08-03 19:39:03 +00:00
<Reference Include="System.Numerics.Vectors">
<HintPath>packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
2021-06-24 01:49:05 +00:00
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.CompilerServices.Unsafe">
2021-12-08 01:13:03 +00:00
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="System.Memory">
<HintPath>packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
2021-06-24 01:49:05 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="System.Text.Encoding.CodePages">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Text.Encoding.CodePages.5.0.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
2021-06-24 01:49:05 +00:00
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="AngleSharp">
2021-12-31 15:28:34 +00:00
<HintPath>packages\AngleSharp.0.16.1\lib\net461\AngleSharp.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
<Reference Include="System.Text.Encodings.Web">
2021-12-08 01:13:03 +00:00
<HintPath>packages\System.Text.Encodings.Web.6.0.0\lib\net461\System.Text.Encodings.Web.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="System.Threading.Tasks.Extensions">
2021-06-24 01:49:05 +00:00
<HintPath>packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="Microsoft.Bcl.AsyncInterfaces">
2021-12-08 01:13:03 +00:00
<HintPath>packages\Microsoft.Bcl.AsyncInterfaces.6.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="System.ValueTuple">
2021-06-24 01:49:05 +00:00
<HintPath>packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="System.Text.Json">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Text.Json.6.0.1\lib\net461\System.Text.Json.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
<Reference Include="System.Core" />
<Reference Include="YoutubeExplode">
2021-12-31 15:28:34 +00:00
<HintPath>packages\YoutubeExplode.6.0.7\lib\net461\YoutubeExplode.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
2021-08-03 19:39:03 +00:00
<Reference Include="MimeTypesMap">
2021-12-31 15:28:34 +00:00
<HintPath>packages\MimeTypesMap.1.0.8\lib\net452\MimeTypesMap.dll</HintPath>
2021-08-03 19:39:03 +00:00
</Reference>
<Reference Include="System.IO">
<HintPath>packages\System.IO.4.3.0\lib\net462\System.IO.dll</HintPath>
</Reference>
<Reference Include="System.Runtime">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Runtime.4.3.1\lib\net462\System.Runtime.dll</HintPath>
2021-08-03 19:39:03 +00:00
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="System.ComponentModel.Composition" />
2021-08-03 19:39:03 +00:00
<Reference Include="System.Security.Cryptography.Encoding">
<HintPath>packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives">
<HintPath>packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Security.Cryptography.Algorithms.4.3.1\lib\net463\System.Security.Cryptography.Algorithms.dll</HintPath>
2021-08-03 19:39:03 +00:00
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Security.Cryptography.X509Certificates.4.3.2\lib\net461\System.Security.Cryptography.X509Certificates.dll</HintPath>
2021-08-03 19:39:03 +00:00
</Reference>
2021-08-25 09:11:08 +00:00
<Reference Include="System.Net.Http">
2021-12-31 15:28:34 +00:00
<HintPath>packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
2021-08-25 09:11:08 +00:00
</Reference>
<Reference Include="SimpleHTTP">
<HintPath>packages\Simple-HTTP.1.0.6\lib\net47\SimpleHTTP.dll</HintPath>
2021-06-24 01:49:05 +00:00
</Reference>
2021-08-26 09:04:57 +00:00
<Reference Include="AsyncEnumerable">
<HintPath>packages\AsyncEnumerator.4.0.2\lib\net461\AsyncEnumerable.dll</HintPath>
</Reference>
<Reference Include="System.Web" />
2021-08-26 10:44:54 +00:00
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="SimpleBase">
<HintPath>packages\SimpleBase.1.3.1\lib\net45\SimpleBase.dll</HintPath>
</Reference>
2021-09-25 19:33:10 +00:00
<Reference Include="CookiesTxtParser">
<HintPath>packages\CookiesTxtParser.1.0.1\lib\netstandard2.0\CookiesTxtParser.dll</HintPath>
2021-08-26 10:44:54 +00:00
</Reference>
2022-01-03 16:35:57 +00:00
<Reference Include="PlaylistsNET">
<HintPath>packages\PlaylistsNET.1.1.3\lib\net45\PlaylistsNET.dll</HintPath>
</Reference>
<Reference Include="Hyperlinq">
<HintPath>packages\Hyperlinq.1.0.7\lib\net40-client\Hyperlinq.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.ZipFile">
<HintPath>packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
</Reference>
<Reference Include="System.IO.Compression.FileSystem" />
2021-06-24 01:49:05 +00:00
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
2022-03-04 05:03:34 +00:00
<Compile Include="Broadcast.cs" />
2021-06-24 01:49:05 +00:00
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
2021-12-08 01:07:43 +00:00
<ItemGroup>
<ProjectReference Include="TYTD.Api\TYTD.Api.csproj">
<Project>{B859C3EE-A821-4C36-8A55-729E79194CF4}</Project>
<Name>TYTD.Api</Name>
</ProjectReference>
</ItemGroup>
2021-08-25 09:11:08 +00:00
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
2021-12-31 15:28:34 +00:00
<Import Project="packages\System.Text.Json.6.0.1\build\System.Text.Json.targets" Condition="Exists('packages\System.Text.Json.6.0.1\build\System.Text.Json.targets')" />
2021-06-24 01:49:05 +00:00
</Project>