mirror of
https://github.com/jellyfin/TMDbLib.git
synced 2024-11-22 21:30:13 +00:00
Remove old Nuget packages.
This commit is contained in:
parent
9a8320d791
commit
79ea24e604
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1,3 +1,2 @@
|
||||
# Set default behaviour to automatically normalize line endings.
|
||||
* text=auto
|
||||
*.nupkg filter=lfs diff=lfs merge=lfs -text
|
||||
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<solution>
|
||||
<add key="disableSourceControlIntegration" value="true" />
|
||||
</solution>
|
||||
</configuration>
|
BIN
.nuget/NuGet.exe
BIN
.nuget/NuGet.exe
Binary file not shown.
@ -1,133 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(MSBuildProjectDirectory)\..\</SolutionDir>
|
||||
|
||||
<!-- Enable the restore command to run before builds -->
|
||||
<RestorePackages Condition=" '$(RestorePackages)' == '' ">false</RestorePackages>
|
||||
|
||||
<!-- Property that enables building a package from a project -->
|
||||
<BuildPackage Condition=" '$(BuildPackage)' == '' ">false</BuildPackage>
|
||||
|
||||
<!-- Determines if package restore consent is required to restore packages -->
|
||||
<RequireRestoreConsent Condition=" '$(RequireRestoreConsent)' != 'false' ">true</RequireRestoreConsent>
|
||||
|
||||
<!-- Download NuGet.exe if it does not already exist -->
|
||||
<DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">false</DownloadNuGetExe>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition=" '$(PackageSources)' == '' ">
|
||||
<!-- Package sources used to restore packages. By default, registered sources under %APPDATA%\NuGet\NuGet.Config will be used -->
|
||||
<!-- The official NuGet package source (https://nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
|
||||
<!--
|
||||
<PackageSource Include="https://nuget.org/api/v2/" />
|
||||
<PackageSource Include="https://my-nuget-source/nuget/" />
|
||||
-->
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT'">
|
||||
<!-- Windows specific commands -->
|
||||
<NuGetToolsPath>$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath>
|
||||
<PackagesConfig>$([System.IO.Path]::Combine($(ProjectDir), "packages.config"))</PackagesConfig>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT'">
|
||||
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
|
||||
<NuGetToolsPath>$(SolutionDir).nuget</NuGetToolsPath>
|
||||
<PackagesConfig>packages.config</PackagesConfig>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<!-- NuGet command -->
|
||||
<NuGetExePath Condition=" '$(NuGetExePath)' == '' ">$(NuGetToolsPath)\NuGet.exe</NuGetExePath>
|
||||
<PackageSources Condition=" $(PackageSources) == '' ">@(PackageSource)</PackageSources>
|
||||
|
||||
<NuGetCommand Condition=" '$(OS)' == 'Windows_NT'">"$(NuGetExePath)"</NuGetCommand>
|
||||
<NuGetCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(NuGetExePath)</NuGetCommand>
|
||||
|
||||
<PackageOutputDir Condition="$(PackageOutputDir) == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
|
||||
|
||||
<RequireConsentSwitch Condition=" $(RequireRestoreConsent) == 'true' ">-RequireConsent</RequireConsentSwitch>
|
||||
<NonInteractiveSwitch Condition=" '$(VisualStudioVersion)' != '' AND '$(OS)' == 'Windows_NT' ">-NonInteractive</NonInteractiveSwitch>
|
||||
|
||||
<!-- Commands -->
|
||||
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir "$(SolutionDir) " </RestoreCommand>
|
||||
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -Properties Configuration=$(Configuration) $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand>
|
||||
|
||||
<!-- We need to ensure packages are restored prior to assembly resolve -->
|
||||
<BuildDependsOn Condition="$(RestorePackages) == 'true'">
|
||||
RestorePackages;
|
||||
$(BuildDependsOn);
|
||||
</BuildDependsOn>
|
||||
|
||||
<!-- Make the build depend on restore packages -->
|
||||
<BuildDependsOn Condition="$(BuildPackage) == 'true'">
|
||||
$(BuildDependsOn);
|
||||
BuildPackage;
|
||||
</BuildDependsOn>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="CheckPrerequisites">
|
||||
<!-- Raise an error if we're unable to locate nuget.exe -->
|
||||
<Error Condition="'$(DownloadNuGetExe)' != 'true' AND !Exists('$(NuGetExePath)')" Text="Unable to locate '$(NuGetExePath)'" />
|
||||
<!--
|
||||
Take advantage of MsBuild's build dependency tracking to make sure that we only ever download nuget.exe once.
|
||||
This effectively acts as a lock that makes sure that the download operation will only happen once and all
|
||||
parallel builds will have to wait for it to complete.
|
||||
-->
|
||||
<MsBuild Targets="_DownloadNuGet" Projects="$(MSBuildThisFileFullPath)" Properties="Configuration=NOT_IMPORTANT;DownloadNuGetExe=$(DownloadNuGetExe)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="_DownloadNuGet">
|
||||
<DownloadNuGet OutputFilename="$(NuGetExePath)" Condition=" '$(DownloadNuGetExe)' == 'true' AND !Exists('$(NuGetExePath)')" />
|
||||
</Target>
|
||||
|
||||
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
|
||||
<Exec Command="$(RestoreCommand)"
|
||||
Condition="'$(OS)' != 'Windows_NT' And Exists('$(PackagesConfig)')" />
|
||||
|
||||
<Exec Command="$(RestoreCommand)"
|
||||
LogStandardErrorAsError="true"
|
||||
Condition="'$(OS)' == 'Windows_NT' And Exists('$(PackagesConfig)')" />
|
||||
</Target>
|
||||
|
||||
<Target Name="BuildPackage" DependsOnTargets="CheckPrerequisites">
|
||||
<Exec Command="$(BuildCommand)"
|
||||
Condition=" '$(OS)' != 'Windows_NT' " />
|
||||
|
||||
<Exec Command="$(BuildCommand)"
|
||||
LogStandardErrorAsError="true"
|
||||
Condition=" '$(OS)' == 'Windows_NT' " />
|
||||
</Target>
|
||||
|
||||
<UsingTask TaskName="DownloadNuGet" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
|
||||
<ParameterGroup>
|
||||
<OutputFilename ParameterType="System.String" Required="true" />
|
||||
</ParameterGroup>
|
||||
<Task>
|
||||
<Reference Include="System.Core" />
|
||||
<Using Namespace="System" />
|
||||
<Using Namespace="System.IO" />
|
||||
<Using Namespace="System.Net" />
|
||||
<Using Namespace="Microsoft.Build.Framework" />
|
||||
<Using Namespace="Microsoft.Build.Utilities" />
|
||||
<Code Type="Fragment" Language="cs">
|
||||
<![CDATA[
|
||||
try {
|
||||
OutputFilename = Path.GetFullPath(OutputFilename);
|
||||
|
||||
Log.LogMessage("Downloading latest version of NuGet.exe...");
|
||||
WebClient webClient = new WebClient();
|
||||
webClient.DownloadFile("https://nuget.org/nuget.exe", OutputFilename);
|
||||
|
||||
return true;
|
||||
}
|
||||
catch (Exception ex) {
|
||||
Log.LogErrorFromException(ex);
|
||||
return false;
|
||||
}
|
||||
]]>
|
||||
</Code>
|
||||
</Task>
|
||||
</UsingTask>
|
||||
</Project>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.0</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike</authors>
|
||||
<owners />
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.1" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="lib\TMDbLib.dll" target="lib\TMDbLib.dll" />
|
||||
<file src="lib\TMDbLib.pdb" target="lib\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.2</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike</authors>
|
||||
<owners />
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.3</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike</authors>
|
||||
<owners />
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.4</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike</authors>
|
||||
<owners />
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.6</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.7.7</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.0-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net40\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net40\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.1-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.2-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.2.1-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.2.2-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.2.3-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.2.4-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.3</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.5.0-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.8.6.0-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="RestSharp" version="104.4.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\..\TMDbLib\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\..\TMDbLib\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.9.0.0-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="Newtonsoft.Json" version="7.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.9.0.1-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="Newtonsoft.Json" version="7.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.9.0.2-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="Newtonsoft.Json" version="7.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
Binary file not shown.
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>TMDbLib</id>
|
||||
<version>0.9.0.3-alpha</version>
|
||||
<title>TMDb Library</title>
|
||||
<authors>LordMike,Naliath</authors>
|
||||
<owners>LordMike</owners>
|
||||
<projectUrl>https://github.com/LordMike/TMDbLib</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>TMDb Library wrapper for The Movie Database's API.</description>
|
||||
<dependencies>
|
||||
<dependency id="Newtonsoft.Json" version="7.0.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.dll" target="lib\net45\TMDbLib.dll" />
|
||||
<file src="..\TMDbLib\bin\Release\TMDbLib.pdb" target="lib\net45\TMDbLib.pdb" />
|
||||
</files>
|
||||
</package>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65d5ced95bc07c5711ca41339c45fedb425052769ccd5b6b0b89a4c84e69baf1
|
||||
size 532720
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:487d5dbc148f93fc9399b523588a4e42310ab9f2aa62f69d6a80df9e706d795b
|
||||
size 1277975
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd67d8c65e9e753038b2cff65d61e05369ce11cf221e18a2a172b5a4bf6ced03
|
||||
size 532785
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61e65f10be46591401ac1d0ca6aa25485b26a4325893381e00330c1f958fe832
|
||||
size 1278121
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1ebaa0d7f840e32ae161b340689ceb801acf4af84f2ecbcefe6aac9ac8967aa
|
||||
size 639190
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5d0db679a694beb47a94ceb19188b74f6a59e43a556bc272d0fae96754169ff
|
||||
size 1515658
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f2cd0b4ee984dd7d591028359b1e1119864657145a950b3814d68ad0c3e1865
|
||||
size 587190
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0a8446f80dcacc7563d01d9bd0426802329d43d3602542b6c586568d43e06a0
|
||||
size 1439064
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e09ba58175e56d55e4adfc66771a4815555c6d5d5dd918d6f42e967613d9a1db
|
||||
size 590326
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ee39f0e72e1ef20e211133c514d444c9c31ca7c8c315f76d6c062befcc12da0
|
||||
size 1453100
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:555fe101376ee12f8ddd97272492a8ceb19abf437dd2c8163b01002d63406fac
|
||||
size 596585
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd4394ac1a22c0b94d78a9c48106cfdc8dbb0273f56e86434ea7d768ecac7b5e
|
||||
size 1478023
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4093c46e783b1f8dc54b2e90aa31be8784d31a60bb4d764c3499fe037679ddc
|
||||
size 582588
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a7b6eaffb5f6c9b964dae75d35780550882000901bda11fae9213b7f48a6efd4
|
||||
size 1423457
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1d0440043ef05bb0f23ef60dd91923e421c483cc77b0f629227930af17f002c
|
||||
size 580240
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8840c9a13907ac8491db98378ccb1bdf5d1362f7ded94d6e3f7d81d453cfa56
|
||||
size 1417689
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d98d250fe8fe8f2384bf4ca5c06b72d563738576c1cde7cf7293f3eb27af4f32
|
||||
size 582649
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6af1d7971f6f9aa135634d74812ee02e7ed2585b501d5b47f4eb350d7bf24f4a
|
||||
size 1436199
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f72f94d637725d63887f22f53734d01f01b826d263a59451a55edace2ed403c1
|
||||
size 584932
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:102500b0cbd9e0a27e6ef493712c20bfd5c6c9c78e13ea2ad4a17921fafdb873
|
||||
size 1447677
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e9672e7788c3bced2b16e934f051e63213170b07ae5606b21e2097d97811ffd7
|
||||
size 595047
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:89ef467bb880f5d67b097a337d30d57ff6336e914eb3622eb59fd389a70f413b
|
||||
size 1485947
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:389935fa9218e171529068058a1ef1cacbc960b43ff6e8c905cca1a6860e8c15
|
||||
size 696067
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ee37c8f10f0e3e653c137786b8eb3913c66d36b37dc83aa27fbdf8e1fddc01b3
|
||||
size 1719440
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0224c47b6c83af1ad079c59fb36cbd1f3963e38ef1e6454631874f12845b5057
|
||||
size 695882
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cef18775ad27d90da34f9f36e53d3a3121f03f7b797c07a3d595b22fdec884e5
|
||||
size 1719197
|
Loading…
Reference in New Issue
Block a user