forked from vosmiic/jellyfin-ani-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjellyfin-ani-sync.csproj
35 lines (28 loc) · 1.18 KB
/
jellyfin-ani-sync.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>jellyfin_ani_sync</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug/</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release/</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.9.1" />
<PackageReference Include="Jellyfin.Model" Version="10.9.1" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="System.Collections" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Configuration\ConfigPage.html" />
<EmbeddedResource Include="Configuration\ConfigPage.html" />
<None Remove="Configuration\ConfigPageJs.js" />
<EmbeddedResource Include="Configuration\ConfigPageJs.js" />
</ItemGroup>
<ItemGroup>
<Compile Remove="builds\**" />
</ItemGroup>
</Project>