mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-24 05:02:10 +00:00
It appears I suck at getting things in the right directory.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2683 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Executable
+126
@@ -0,0 +1,126 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.50727</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{251CAABC-16C3-4593-A491-603B908094E0}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>FreeSwitch.NET</RootNamespace>
|
||||
<AssemblyName>Freeswitch</AssemblyName>
|
||||
<StartupObject>
|
||||
</StartupObject>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>public.snk</AssemblyOriginatorKeyFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Common.cs" />
|
||||
<Compile Include="Marshaling\BufferMarshaler.cs" />
|
||||
<Compile Include="Marshaling\CallerExtensionMarshaler.cs" />
|
||||
<Compile Include="Marshaling\CallerProfileMarshaler.cs" />
|
||||
<Compile Include="Marshaling\ChannelMarshaler.cs" />
|
||||
<Compile Include="Marshaling\ChannelTimetableMarshaler.cs" />
|
||||
<Compile Include="Marshaling\StreamHandleMarshaler.cs" />
|
||||
<Compile Include="Marshaling\CoreSessionMarshaler.cs" />
|
||||
<Compile Include="Marshaling\EventMarshaler.cs" />
|
||||
<Compile Include="Marshaling\MemoryPoolMarshaler.cs" />
|
||||
<Compile Include="Marshaling\Types\BufferMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CallerExtensionMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CallerProfileMarshal.cs" />
|
||||
<Compile Include="Marshaling\FileHandleMarshaler.cs" />
|
||||
<Compile Include="Marshaling\Types\ChannelFlagMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\ChannelMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\ChannelStateMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\ChannelTimetableMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\ApplicationInterfaceMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\ApiInterfaceMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CodecImplementationMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CodecInterfaceMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CodecMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CodecTypeMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\StreamHandleMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\TypesMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\FileHandleMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\LoadableModuleInterfaceMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\LoadableModuleMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\CoreSessionMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\EventMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\FrameMarshal.cs" />
|
||||
<Compile Include="Marshaling\Types\IOEventHooksMarshal.cs" />
|
||||
<Compile Include="Module.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Switch\CallerProfile.cs" />
|
||||
<Compile Include="Switch\Channel.cs" />
|
||||
<Compile Include="Switch\Console.cs" />
|
||||
<Compile Include="Switch\StreamHandle.cs" />
|
||||
<Compile Include="Switch\CoreSession.cs" />
|
||||
<Compile Include="Switch\Ivr.cs" />
|
||||
<Compile Include="Switch\LoadableModule.cs" />
|
||||
<Compile Include="Modules\Api.cs" />
|
||||
<Compile Include="Types\ApiFunction.cs" />
|
||||
<Compile Include="Types\ApplicationInterface.cs" />
|
||||
<Compile Include="Types\Buffer.cs" />
|
||||
<Compile Include="Types\CallerExtension.cs" />
|
||||
<Compile Include="Types\CallerProfile.cs" />
|
||||
<Compile Include="Types\Channel.cs" />
|
||||
<Compile Include="Types\ChannelFlag.cs" />
|
||||
<Compile Include="Types\ChannelState.cs" />
|
||||
<Compile Include="Types\ChannelTimetable.cs" />
|
||||
<Compile Include="Modules\Application.cs" />
|
||||
<Compile Include="Types\ApplicationFunction.cs" />
|
||||
<Compile Include="Types\CallCause.cs" />
|
||||
<Compile Include="Types\InputCallbackFunction.cs" />
|
||||
<Compile Include="Types\InputType.cs" />
|
||||
<Compile Include="Types\ModuleInterfaces.cs" />
|
||||
<Compile Include="Types\StreamHandle.cs" />
|
||||
<Compile Include="Types\Module.cs" />
|
||||
<Compile Include="Types\DtmfCallbackFunction.cs" />
|
||||
<Compile Include="Types\FileHandle.cs" />
|
||||
<Compile Include="Types\MemoryPool.cs" />
|
||||
<Compile Include="Types\LoadableModule.cs" />
|
||||
<Compile Include="Types\LoadableModuleInterface.cs" />
|
||||
<Compile Include="Types\TextChannel.cs" />
|
||||
<Compile Include="Types\CoreSession.cs" />
|
||||
<Compile Include="Types\Event.cs" />
|
||||
<Compile Include="Types\Status.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Makefile" />
|
||||
<None Include="public.snk" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
Reference in New Issue
Block a user