-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudioDashboard.Simple.csproj
More file actions
36 lines (33 loc) · 1.09 KB
/
StudioDashboard.Simple.csproj
File metadata and controls
36 lines (33 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Memory" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="MediaBrowser.Common">
<HintPath>lib/MediaBrowser.Common.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="MediaBrowser.Controller">
<HintPath>lib/MediaBrowser.Controller.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="MediaBrowser.Model">
<HintPath>lib/MediaBrowser.Model.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="dashboard.html">
<LogicalName>StudioDashboard.dashboard.html</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="home.html">
<LogicalName>StudioDashboard.home.html</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>