-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudioDashboard.csproj
More file actions
41 lines (37 loc) · 1.27 KB
/
StudioDashboard.csproj
File metadata and controls
41 lines (37 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Memory" Version="4.5.4" />
</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>
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
</Project>