-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmbyParty.csproj
50 lines (42 loc) · 2.24 KB
/
EmbyParty.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="dashboard-ui\modules\embyparty\emoji.js" />
<None Remove="dashboard-ui\modules\embyparty\emoji_license.txt" />
<None Remove="dashboard-ui\modules\embyparty\emoticon.js" />
<None Remove="dashboard-ui\modules\embyparty\joinparty.js" />
<None Remove="dashboard-ui\modules\embyparty\partyapiclient.js" />
<None Remove="dashboard-ui\modules\embyparty\partyheader.css" />
<None Remove="dashboard-ui\modules\embyparty\partyheader.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="dashboard-ui\modules\embyparty\emoji.js" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\emoji_license.txt" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\emoticon.js" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\joinparty.js" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\partyapiclient.js" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\partyheader.css" />
<EmbeddedResource Include="dashboard-ui\modules\embyparty\partyheader.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="mediabrowser.server.core" Version="4.8.5" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="WebSocketSharp-netstandard" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(TargetPath)" "%25AppData%25\Emby-Server\programdata\plugins\" /y" Condition="'$(OS)' == 'Windows_NT'" />
<Exec Command="EMBYDATA=$(grep "^EMBY_DATA=" /etc/emby-server.conf | cut -d'=' -f2); EMBYDATA=${EMBYDATA:-/var/lib/emby}; cp -f "$(TargetPath)" "$EMBYDATA/plugins/"" Condition="'$(OS)' != 'Windows_NT'" />
</Target>
</Project>