mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
23 lines
796 B
XML
23 lines
796 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>Plex-API</PackageId>
|
|
<Version>0.1.3</Version>
|
|
<Authors>LukeHagar</Authors>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>1591</NoWarn>
|
|
<RepositoryUrl>https://github.com/LukeHagar/plexcsharp</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../README.md" Pack="true" PackagePath="/"/>
|
|
<None Include="../docs/*" Pack="true" PackagePath="/docs"/>
|
|
|
|
<PackageReference Include="newtonsoft.json" Version="13.0.3" />
|
|
<PackageReference Include="nodatime" Version="3.1.9" />
|
|
</ItemGroup>
|
|
</Project>
|