mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 04:20:46 +00:00
76 lines
4.9 KiB
XML
76 lines
4.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>LukeHagar.PlexAPI.SDK</PackageId>
|
|
<Version>0.14.11</Version>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Authors>LukeHagar</Authors>
|
|
<Copyright>Copyright (c) LukeHagar 2025</Copyright>
|
|
<RepositoryUrl>https://github.com/LukeHagar/plexcsharp.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>Plex Media Server SDK</PackageTags>
|
|
<Description># Plex Media Server OpenAPI Specification<br/>
|
|
<br/>
|
|
An Open Source OpenAPI Specification for Plex Media Server<br/>
|
|
<br/>
|
|
Automation and SDKs provided by <a href="https://speakeasyapi.dev/">Speakeasy</a><br/>
|
|
<br/>
|
|
## Documentation<br/>
|
|
<br/>
|
|
<a href="https://plexapi.dev">API Documentation</a><br/>
|
|
<br/>
|
|
## SDKs<br/>
|
|
<br/>
|
|
The following SDKs are generated from the OpenAPI Specification. They are automatically generated and may not be fully tested. If you find any issues, please open an issue on the <a href="https://github.com/LukeHagar/plex-api-spec">main specification Repository</a>.<br/>
|
|
<br/>
|
|
| Language | Repository | Releases | Other |<br/>
|
|
| --------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------- |<br/>
|
|
| Python | <a href="https://github.com/LukeHagar/plexpy">GitHub</a> | <a href="https://pypi.org/project/plex-api-client/">PyPI</a> | - |<br/>
|
|
| JavaScript/TypeScript | <a href="https://github.com/LukeHagar/plexjs">GitHub</a> | <a href="https://www.npmjs.com/package/@lukehagar/plexjs">NPM</a> \ <a href="https://jsr.io/@lukehagar/plexjs">JSR</a> | - |<br/>
|
|
| Go | <a href="https://github.com/LukeHagar/plexgo">GitHub</a> | <a href="https://github.com/LukeHagar/plexgo/releases">Releases</a> | <a href="https://pkg.go.dev/github.com/LukeHagar/plexgo">GoDoc</a> |<br/>
|
|
| Ruby | <a href="https://github.com/LukeHagar/plexruby">GitHub</a> | <a href="https://github.com/LukeHagar/plexruby/releases">Releases</a> | - |<br/>
|
|
| Swift | <a href="https://github.com/LukeHagar/plexswift">GitHub</a> | <a href="https://github.com/LukeHagar/plexswift/releases">Releases</a> | - |<br/>
|
|
| PHP | <a href="https://github.com/LukeHagar/plexphp">GitHub</a> | <a href="https://github.com/LukeHagar/plexphp/releases">Releases</a> | - |<br/>
|
|
| Java | <a href="https://github.com/LukeHagar/plexjava">GitHub</a> | <a href="https://github.com/LukeHagar/plexjava/releases">Releases</a> | - |<br/>
|
|
| C# | <a href="https://github.com/LukeHagar/plexcsharp">GitHub</a> | <a href="https://github.com/LukeHagar/plexcsharp/releases">Releases</a> | -<br/>
|
|
</Description>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<NoWarn>1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\..\..\NUGET.md" Pack="true" PackagePath="README.md"/>
|
|
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="\"/>
|
|
<None Include="..\..\..\docs\**\*" Pack="true" PackagePath="\docs" CopyToOutputDirectory="PreserveNewest"/>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedAllSources>true</EmbedAllSources>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="newtonsoft.json" Version="13.0.3" />
|
|
<PackageReference Include="nodatime" Version="3.1.9" />
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
|
|
</ItemGroup>
|
|
|
|
</Project> |