-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathPlex.Library.csproj
More file actions
48 lines (39 loc) · 1.6 KB
/
Plex.Library.csproj
File metadata and controls
48 lines (39 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>True</IsPackable>
<Title>Plex Api</Title>
<PackageProjectUrl>https://github.com/jensenkd/plex-api</PackageProjectUrl>
<PackageLicense>https://github.com/jensenkd/plex-api/blob/master/LICENSE.md</PackageLicense>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>Plex.Api</PackageId>
<Description>Library for interacting with Plex Media Servers </Description>
<Authors>Kevin Jensen</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jensenkd/plex-api</RepositoryUrl>
<PackageTags>plex dotnet core api</PackageTags>
</PropertyGroup>
<ItemGroup>
<_PackageFiles Include="$(OutputPath)\Plex.ServerApi.dll">
<BuildAction>None</BuildAction>
<PackagePath>lib\net6.0</PackagePath>
</_PackageFiles>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DocumentationFile>bin\Debug\Plex.Api.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\Plex.Api.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Plex.ServerApi\Plex.ServerApi.csproj" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<DocFileItem Remove="bin\Release\Plex.Api.xml" />
</ItemGroup>
</Project>