RSSDP.csproj 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <TargetFrameworkProfile />
  16. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Compile Include="CustomHttpHeaders.cs" />
  37. <Compile Include="DeviceAvailableEventArgs.cs" />
  38. <Compile Include="DeviceEventArgs.cs" />
  39. <Compile Include="DeviceUnavailableEventArgs.cs" />
  40. <Compile Include="DiscoveredSsdpDevice.cs" />
  41. <Compile Include="DisposableManagedObjectBase.cs" />
  42. <Compile Include="GlobalSuppressions.cs" />
  43. <Compile Include="HttpParserBase.cs" />
  44. <Compile Include="HttpRequestParser.cs" />
  45. <Compile Include="HttpResponseParser.cs" />
  46. <Compile Include="IEnumerableExtensions.cs" />
  47. <Compile Include="ISsdpCommunicationsServer.cs" />
  48. <Compile Include="ISsdpDeviceLocator.cs" />
  49. <Compile Include="ISsdpDevicePublisher.cs" />
  50. <Compile Include="IUPnPDeviceValidator.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. <Compile Include="RequestReceivedEventArgs.cs" />
  53. <Compile Include="ResponseReceivedEventArgs.cs" />
  54. <Compile Include="SsdpCommunicationsServer.cs" />
  55. <Compile Include="SsdpConstants.cs" />
  56. <Compile Include="SsdpDevice.cs" />
  57. <Compile Include="SsdpDeviceExtensions.cs" />
  58. <Compile Include="SsdpDeviceIcon.cs" />
  59. <Compile Include="SsdpDeviceLocator.cs" />
  60. <Compile Include="SsdpDeviceLocatorBase.cs" />
  61. <Compile Include="SsdpDeviceProperties.cs" />
  62. <Compile Include="SsdpDeviceProperty.cs" />
  63. <Compile Include="SsdpDevicePublisher.cs" />
  64. <Compile Include="SsdpDevicePublisherBase.cs" />
  65. <Compile Include="SsdpEmbeddedDevice.cs" />
  66. <Compile Include="SsdpHelper.cs" />
  67. <Compile Include="SsdpRootDevice.cs" />
  68. <Compile Include="UPnP10DeviceValidator.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  72. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  73. <Name>MediaBrowser.Common</Name>
  74. </ProjectReference>
  75. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  76. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  77. <Name>MediaBrowser.Model</Name>
  78. </ProjectReference>
  79. <Reference Include="System" />
  80. <Reference Include="System.Configuration" />
  81. <Reference Include="System.Core" />
  82. <Reference Include="System.Runtime.Serialization" />
  83. <Reference Include="System.Xml.Linq" />
  84. <Reference Include="System.Data.DataSetExtensions" />
  85. <Reference Include="Microsoft.CSharp" />
  86. <Reference Include="System.Data" />
  87. <Reference Include="System.Net.Http" />
  88. <Reference Include="System.Xml" />
  89. </ItemGroup>
  90. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  91. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  92. Other similar extension points exist, see Microsoft.Common.targets.
  93. <Target Name="BeforeBuild">
  94. </Target>
  95. <Target Name="AfterBuild">
  96. </Target>
  97. -->
  98. </Project>