MediaBrowser.ServerApplication.csproj 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{156EA256-AD2D-4D2F-B116-2ED4B9EFD869}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.ServerApplication</RootNamespace>
  11. <AssemblyName>MediaBrowser.ServerApplication</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <StartupObject>MediaBrowser.ServerApplication.App</StartupObject>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <ApplicationIcon>Resources\Images\icon.ico</ApplicationIcon>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="Hardcodet.Wpf.TaskbarNotification">
  44. <HintPath>..\packages\Hardcodet.Wpf.TaskbarNotification.1.0.4.0\lib\net40\Hardcodet.Wpf.TaskbarNotification.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Drawing" />
  49. <Reference Include="System.Runtime.Remoting" />
  50. <Reference Include="System.Xml" />
  51. <Reference Include="Microsoft.CSharp" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="System.Xaml">
  56. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  57. </Reference>
  58. <Reference Include="WindowsBase" />
  59. <Reference Include="PresentationCore" />
  60. <Reference Include="PresentationFramework" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Page Include="App.xaml">
  64. <Generator>MSBuild:Compile</Generator>
  65. <SubType>Designer</SubType>
  66. </Page>
  67. <Page Include="MainWindow.xaml">
  68. <Generator>MSBuild:Compile</Generator>
  69. <SubType>Designer</SubType>
  70. </Page>
  71. <Compile Include="App.xaml.cs">
  72. <DependentUpon>App.xaml</DependentUpon>
  73. <SubType>Code</SubType>
  74. </Compile>
  75. <Compile Include="MainWindow.xaml.cs">
  76. <DependentUpon>MainWindow.xaml</DependentUpon>
  77. <SubType>Code</SubType>
  78. </Compile>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Compile Include="Properties\AssemblyInfo.cs">
  82. <SubType>Code</SubType>
  83. </Compile>
  84. <Compile Include="Properties\Resources.Designer.cs">
  85. <AutoGen>True</AutoGen>
  86. <DesignTime>True</DesignTime>
  87. <DependentUpon>Resources.resx</DependentUpon>
  88. </Compile>
  89. <Compile Include="Properties\Settings.Designer.cs">
  90. <AutoGen>True</AutoGen>
  91. <DependentUpon>Settings.settings</DependentUpon>
  92. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  93. </Compile>
  94. <EmbeddedResource Include="Properties\Resources.resx">
  95. <Generator>ResXFileCodeGenerator</Generator>
  96. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  97. </EmbeddedResource>
  98. <None Include="packages.config" />
  99. <None Include="Properties\Settings.settings">
  100. <Generator>SettingsSingleFileGenerator</Generator>
  101. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  102. </None>
  103. <AppDesigner Include="Properties\" />
  104. </ItemGroup>
  105. <ItemGroup>
  106. <None Include="App.config">
  107. <SubType>Designer</SubType>
  108. </None>
  109. </ItemGroup>
  110. <ItemGroup>
  111. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  112. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  113. <Name>MediaBrowser.Common</Name>
  114. </ProjectReference>
  115. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  116. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  117. <Name>MediaBrowser.Controller</Name>
  118. </ProjectReference>
  119. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  120. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  121. <Name>MediaBrowser.Model</Name>
  122. </ProjectReference>
  123. </ItemGroup>
  124. <ItemGroup>
  125. <Resource Include="Resources\Images\icon.ico" />
  126. </ItemGroup>
  127. <ItemGroup>
  128. <Resource Include="Resources\Images\loadingIcon1.ico" />
  129. <Resource Include="Resources\Images\loadingIcon2.ico" />
  130. </ItemGroup>
  131. <ItemGroup>
  132. <Resource Include="Resources\Images\loadingIcon3.ico" />
  133. <Resource Include="Resources\Images\loadingIcon4.ico" />
  134. </ItemGroup>
  135. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  136. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  137. Other similar extension points exist, see Microsoft.Common.targets.
  138. <Target Name="BeforeBuild">
  139. </Target>
  140. <Target Name="AfterBuild">
  141. </Target>
  142. -->
  143. </Project>