-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudioDashboard.Final.csproj
More file actions
56 lines (52 loc) · 1.84 KB
/
StudioDashboard.Final.csproj
File metadata and controls
56 lines (52 loc) · 1.84 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
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Memory">
<HintPath>lib/System.Memory.dll</HintPath>
<Private>true</Private>
</Reference>
<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>
<Compile Include="Plugin.cs" />
<Compile Include="ApiController.cs" />
<Compile Include="Configuration.cs" />
<Compile Include="StudioDto.cs" />
<Compile Include="StreamingStudioDto.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="dashboard.html">
<LogicalName>StudioDashboard.dashboard.html</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="home.html">
<LogicalName>StudioDashboard.home.html</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>