Mono.Nat.csproj 4.4 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. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{CB7F2326-6497-4A3D-BA03-48513B17A7BE}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Mono.Nat</RootNamespace>
  11. <AssemblyName>Mono.Nat</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Core" />
  36. <Reference Include="System.Xml.Linq" />
  37. <Reference Include="System.Data.DataSetExtensions" />
  38. <Reference Include="Microsoft.CSharp" />
  39. <Reference Include="System.Data" />
  40. <Reference Include="System.Net.Http" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="..\SharedVersion.cs">
  45. <Link>Properties\SharedVersion.cs</Link>
  46. </Compile>
  47. <Compile Include="AbstractNatDevice.cs" />
  48. <Compile Include="AsyncResults\AsyncResult.cs" />
  49. <Compile Include="Enums\MapState.cs" />
  50. <Compile Include="Enums\ProtocolType.cs" />
  51. <Compile Include="EventArgs\DeviceEventArgs.cs" />
  52. <Compile Include="Exceptions\MappingException.cs" />
  53. <Compile Include="INatDevice.cs" />
  54. <Compile Include="ISearcher.cs" />
  55. <Compile Include="Mapping.cs" />
  56. <Compile Include="NatProtocol.cs" />
  57. <Compile Include="NatUtility.cs" />
  58. <Compile Include="Pmp\AsyncResults\PortMapAsyncResult.cs" />
  59. <Compile Include="Pmp\PmpConstants.cs" />
  60. <Compile Include="Pmp\PmpNatDevice.cs" />
  61. <Compile Include="Pmp\Searchers\PmpSearcher.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <Compile Include="Upnp\Messages\DiscoverDeviceMessage.cs" />
  64. <Compile Include="Upnp\Messages\ErrorMessage.cs" />
  65. <Compile Include="Upnp\Messages\GetServicesMessage.cs" />
  66. <Compile Include="Upnp\Messages\Requests\CreatePortMappingMessage.cs" />
  67. <Compile Include="Upnp\Messages\Responses\CreatePortMappingResponseMessage.cs" />
  68. <Compile Include="Upnp\Messages\UpnpMessage.cs" />
  69. <Compile Include="Upnp\Searchers\UpnpSearcher.cs" />
  70. <Compile Include="Upnp\Upnp.cs" />
  71. <Compile Include="Upnp\UpnpNatDevice.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Folder Include="Upnp\AsyncResults\" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  78. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  79. <Name>MediaBrowser.Common</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  82. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  83. <Name>MediaBrowser.Controller</Name>
  84. </ProjectReference>
  85. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  86. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  87. <Name>MediaBrowser.Model</Name>
  88. </ProjectReference>
  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>