CoreAudio.csproj 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2222E8D7-6130-4B46-9749-474E3FE2891B}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Vannatech.CoreAudio</RootNamespace>
  12. <AssemblyName>Vannatech.CoreAudio</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  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. <DocumentationFile>bin\Debug\Vannatech.CoreAudio.xml</DocumentationFile>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. <RunCodeAnalysis>false</RunCodeAnalysis>
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>
  34. </DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <DocumentationFile>bin\Release\Vannatech.CoreAudio.xml</DocumentationFile>
  38. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <SignAssembly>true</SignAssembly>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <AssemblyOriginatorKeyFile>Properties\CoreAudioKey.snk</AssemblyOriginatorKeyFile>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Xml.Linq" />
  50. <Reference Include="System.Data.DataSetExtensions" />
  51. <Reference Include="Microsoft.CSharp" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Xml" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="Constants\AUDCLNT_SESSIONFLAGS_XXX.cs" />
  57. <Compile Include="Constants\AUDCLNT_STREAMFLAGS_XXX.cs" />
  58. <Compile Include="Constants\ComIIDs.cs" />
  59. <Compile Include="Constants\PropertyKeys.cs" />
  60. <Compile Include="Constants\ENDPOINT_HARDWARE_SUPPORT_XXX.cs" />
  61. <Compile Include="Constants\DEVICE_STATE_XXX.cs" />
  62. <Compile Include="Enumerations\AudioSessionDisconnectReason.cs" />
  63. <Compile Include="Enumerations\PartType.cs" />
  64. <Compile Include="Enumerations\AUDCLNT_BUFFERFLAGS.cs" />
  65. <Compile Include="Enumerations\AUDCLNT_SHAREMODE.cs" />
  66. <Compile Include="Enumerations\AudioSessionState.cs" />
  67. <Compile Include="Enumerations\ConnectorType.cs" />
  68. <Compile Include="Enumerations\DataFlow.cs" />
  69. <Compile Include="Enumerations\EDataFlow.cs" />
  70. <Compile Include="Enumerations\EndpointFormFactor.cs" />
  71. <Compile Include="Enumerations\ERole.cs" />
  72. <Compile Include="Enumerations\KSJACK_SINK_CONNECTIONTYPE.cs" />
  73. <Compile Include="Externals\CLSCTX.cs" />
  74. <Compile Include="Externals\STGM.cs" />
  75. <Compile Include="Externals\PROPVARIANT.cs" />
  76. <Compile Include="Externals\PROPERTYKEY.cs" />
  77. <Compile Include="Constants\ComCLSIDs.cs" />
  78. <Compile Include="Interfaces\IKsJackSinkInformation.cs" />
  79. <Compile Include="Interfaces\IKsJackDescription2.cs" />
  80. <Compile Include="Interfaces\IKsJackDescription.cs" />
  81. <Compile Include="Interfaces\IKsFormatSupport.cs" />
  82. <Compile Include="Interfaces\ISubunit.cs" />
  83. <Compile Include="Interfaces\IPartsList.cs" />
  84. <Compile Include="Interfaces\IPart.cs" />
  85. <Compile Include="Interfaces\IDeviceTopology.cs" />
  86. <Compile Include="Interfaces\IDeviceSpecificProperty.cs" />
  87. <Compile Include="Interfaces\IControlInterface.cs" />
  88. <Compile Include="Interfaces\IControlChangeNotify.cs" />
  89. <Compile Include="Interfaces\IConnector.cs" />
  90. <Compile Include="Interfaces\IChannelAudioVolume.cs" />
  91. <Compile Include="Interfaces\IAudioVolumeLevel.cs" />
  92. <Compile Include="Interfaces\IAudioTreble.cs" />
  93. <Compile Include="Interfaces\IAudioStreamVolume.cs" />
  94. <Compile Include="Interfaces\IAudioVolumeDuckNotification.cs" />
  95. <Compile Include="Interfaces\IAudioSessionNotification.cs" />
  96. <Compile Include="Interfaces\IAudioSessionManager2.cs" />
  97. <Compile Include="Interfaces\ISimpleAudioVolume.cs" />
  98. <Compile Include="Interfaces\IAudioSessionManager.cs" />
  99. <Compile Include="Interfaces\IAudioSessionEnumerator.cs" />
  100. <Compile Include="Interfaces\IAudioSessionControl2.cs" />
  101. <Compile Include="Interfaces\IAudioSessionEvents.cs" />
  102. <Compile Include="Interfaces\IAudioSessionControl.cs" />
  103. <Compile Include="Interfaces\IAudioRenderClient.cs" />
  104. <Compile Include="Interfaces\IAudioPeakMeter.cs" />
  105. <Compile Include="Interfaces\IAudioOutputSelector.cs" />
  106. <Compile Include="Interfaces\IAudioMute.cs" />
  107. <Compile Include="Interfaces\IAudioMidrange.cs" />
  108. <Compile Include="Interfaces\IAudioLoudness.cs" />
  109. <Compile Include="Interfaces\IAudioInputSelector.cs" />
  110. <Compile Include="Interfaces\IAudioClock2.cs" />
  111. <Compile Include="Interfaces\IAudioClockAdjustment.cs" />
  112. <Compile Include="Interfaces\IAudioClock.cs" />
  113. <Compile Include="Interfaces\IAudioClient.cs" />
  114. <Compile Include="Interfaces\IAudioChannelConfig.cs" />
  115. <Compile Include="Interfaces\IAudioCaptureClient.cs" />
  116. <Compile Include="Interfaces\IAudioBass.cs" />
  117. <Compile Include="Interfaces\IPerChannelDbLevel.cs" />
  118. <Compile Include="Interfaces\IAudioAutoGainControl.cs" />
  119. <Compile Include="Interfaces\IAudioEndpointVolumeCallback.cs" />
  120. <Compile Include="Interfaces\IAudioMeterInformation.cs" />
  121. <Compile Include="Interfaces\IAudioEndpointVolumeEx.cs" />
  122. <Compile Include="Interfaces\IAudioEndpointVolume.cs" />
  123. <Compile Include="Interfaces\IMMNotificationClient.cs" />
  124. <Compile Include="Structures\AUDIO_VOLUME_NOTIFICATION_DATA.cs" />
  125. <Compile Include="Structures\KSJACK_SINK_INFORMATION.cs" />
  126. <Compile Include="Structures\KSJACK_DESCRIPTION2.cs" />
  127. <Compile Include="Structures\DIRECTX_AUDIO_ACTIVATION_PARAMS.cs" />
  128. <Compile Include="Structures\KSJACK_DESCRIPTION.cs" />
  129. <Compile Include="Structures\LUID.cs" />
  130. <Compile Include="Externals\IPropertyStore.cs" />
  131. <Compile Include="Interfaces\IMMEndpoint.cs" />
  132. <Compile Include="Interfaces\IMMDeviceCollection.cs" />
  133. <Compile Include="Interfaces\IMMDeviceEnumerator.cs" />
  134. <Compile Include="Interfaces\IMMDevice.cs" />
  135. <Compile Include="Interfaces\Definitions.cs" />
  136. <Compile Include="Properties\AssemblyInfo.cs" />
  137. </ItemGroup>
  138. <ItemGroup>
  139. <None Include="Properties\CoreAudioKey.snk" />
  140. </ItemGroup>
  141. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  142. <PropertyGroup>
  143. <PostBuildEvent>
  144. </PostBuildEvent>
  145. </PropertyGroup>
  146. <PropertyGroup>
  147. <PreBuildEvent>
  148. </PreBuildEvent>
  149. </PropertyGroup>
  150. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  151. Other similar extension points exist, see Microsoft.Common.targets.
  152. <Target Name="BeforeBuild">
  153. </Target>
  154. <Target Name="AfterBuild">
  155. </Target>
  156. -->
  157. </Project>