RSSDP.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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. <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{21002819-C39A-4D3E-BE83-2A276A77FB1F}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>RSSDP</RootNamespace>
  12. <AssemblyName>RSSDP</AssemblyName>
  13. <DefaultLanguage>en-US</DefaultLanguage>
  14. <FileAlignment>512</FileAlignment>
  15. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  17. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  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. <ItemGroup>
  37. <Compile Include="CustomHttpHeaders.cs" />
  38. <Compile Include="DeviceAvailableEventArgs.cs" />
  39. <Compile Include="DeviceEventArgs.cs" />
  40. <Compile Include="DeviceUnavailableEventArgs.cs" />
  41. <Compile Include="DiscoveredSsdpDevice.cs" />
  42. <Compile Include="DisposableManagedObjectBase.cs" />
  43. <Compile Include="GlobalSuppressions.cs" />
  44. <Compile Include="HttpParserBase.cs" />
  45. <Compile Include="HttpRequestParser.cs" />
  46. <Compile Include="HttpResponseParser.cs" />
  47. <Compile Include="IEnumerableExtensions.cs" />
  48. <Compile Include="ISsdpCommunicationsServer.cs" />
  49. <Compile Include="ISsdpDeviceLocator.cs" />
  50. <Compile Include="ISsdpDevicePublisher.cs" />
  51. <Compile Include="IUPnPDeviceValidator.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="RequestReceivedEventArgs.cs" />
  54. <Compile Include="ResponseReceivedEventArgs.cs" />
  55. <Compile Include="SsdpCommunicationsServer.cs" />
  56. <Compile Include="SsdpConstants.cs" />
  57. <Compile Include="SsdpDevice.cs" />
  58. <Compile Include="SsdpDeviceExtensions.cs" />
  59. <Compile Include="SsdpDeviceIcon.cs" />
  60. <Compile Include="SsdpDeviceLocator.cs" />
  61. <Compile Include="SsdpDeviceLocatorBase.cs" />
  62. <Compile Include="SsdpDeviceProperties.cs" />
  63. <Compile Include="SsdpDeviceProperty.cs" />
  64. <Compile Include="SsdpDevicePublisher.cs" />
  65. <Compile Include="SsdpDevicePublisherBase.cs" />
  66. <Compile Include="SsdpEmbeddedDevice.cs" />
  67. <Compile Include="SsdpHelper.cs" />
  68. <Compile Include="SsdpRootDevice.cs" />
  69. <Compile Include="UPnP10DeviceValidator.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  73. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  74. <Name>MediaBrowser.Common</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  77. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  78. <Name>MediaBrowser.Model</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>