2 Star 2 Fork 1

JackBranson/rtmp-sharp-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rtmp-sharp.csproj 8.70 KB
一键复制 编辑 原始数据 按行查看 历史
JackBranson 提交于 2017-03-01 16:16 . init
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{AA1A4F5D-3BD4-4832-9F5D-90727007727E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>RtmpSharp</RootNamespace>
<AssemblyName>rtmp-sharp</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</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>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</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>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Fleck, Version=0.14.0.59, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Fleck.0.14.0.59\lib\net40\Fleck.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Complete\ExceptionalEventArgs.cs" />
<Compile Include="Complete\IO\StreamHelper.cs" />
<Compile Include="Complete\IO\Zlib\Adler32.cs" />
<Compile Include="Complete\IO\Zlib\ZlibStream.cs" />
<Compile Include="Complete\MethodFactory.cs" />
<Compile Include="Complete\Threading\TaskCallbackManager.cs" />
<Compile Include="IO\AMF0\Amf0TypeMarkers.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0ArrayWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0AsObjectWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0BooleanWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0CharWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0DateTimeWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0EnumWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0GuidWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0NumberWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0ObjectWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0StringWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0XDocumentWriter.cs" />
<Compile Include="IO\AMF0\AMFWriters\Amf0XElementWriter.cs" />
<Compile Include="IO\AMF3\Amf3TypeMarkers.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3ArrayWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3AsObjectWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3BooleanWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3ByteArrayWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3CharWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3DateTimeWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3DoubleWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3EnumWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3GuidWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3IntWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3NativeByteArrayWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3ObjectWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3StringWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3VectorWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3XDocumentWriter.cs" />
<Compile Include="IO\AMF3\AMFWriters\Amf3XElementWriter.cs" />
<Compile Include="IO\AMF3\ArrayCollection.cs" />
<Compile Include="IO\AMF3\ByteArray.cs" />
<Compile Include="IO\AMF3\DataInput.cs" />
<Compile Include="IO\AMF3\DataOutput.cs" />
<Compile Include="IO\AMF3\IDataInput.cs" />
<Compile Include="IO\AMF3\IDataOutput.cs" />
<Compile Include="IO\AMF3\IExternalizable.cs" />
<Compile Include="IO\AMF3\ObjectProxy.cs" />
<Compile Include="IO\AmfReader.cs" />
<Compile Include="IO\AmfWriter.cs" />
<Compile Include="IO\AsObject.cs" />
<Compile Include="IO\ClassDescription.cs" />
<Compile Include="IO\DeserializationStrategy.cs" />
<Compile Include="IO\FallbackStrategy.cs" />
<Compile Include="IO\IAmfItemWriter.cs" />
<Compile Include="IO\IObjectWrapper.cs" />
<Compile Include="IO\MiniTypeConverter.cs" />
<Compile Include="IO\ObjectEncoding.cs" />
<Compile Include="IO\ObjectWrapperFactory.cs" />
<Compile Include="IO\ObjectWrappers\AsObjectWrapper.cs" />
<Compile Include="IO\ObjectWrappers\BasicObjectWrapper.cs" />
<Compile Include="IO\ObjectWrappers\ExceptionWrapper.cs" />
<Compile Include="IO\ObjectWrappers\ExternalizableWrapper.cs" />
<Compile Include="IO\SerializationContext.cs" />
<Compile Include="IO\SerializedNameAttribute.cs" />
<Compile Include="IO\SerializerObjectFactory.cs" />
<Compile Include="IO\StreamHelper.cs" />
<Compile Include="IO\TransientAttribute.cs" />
<Compile Include="IO\TypeConverters\StringConverter.cs" />
<Compile Include="Messaging\ChannelDataReceivedEventHandler.cs" />
<Compile Include="Messaging\ChannelType.cs" />
<Compile Include="Messaging\ChannelDataReceivedEventArgs.cs" />
<Compile Include="Messaging\Events\Abort.cs" />
<Compile Include="Messaging\Events\Acknowledgement.cs" />
<Compile Include="Messaging\Events\AudioVideoData.cs" />
<Compile Include="Messaging\Events\ChunkSize.cs" />
<Compile Include="Messaging\Events\Command.cs" />
<Compile Include="Messaging\Events\PeerBandwidth.cs" />
<Compile Include="Messaging\Events\UserControlMessage.cs" />
<Compile Include="Messaging\Events\WindowAcknowledgementSize.cs" />
<Compile Include="Messaging\InvocationException.cs" />
<Compile Include="Messaging\MessageReceivedEventArgs.cs" />
<Compile Include="Messaging\Messages\AcknowledgeMessage.cs" />
<Compile Include="Messaging\Messages\AsyncMessage.cs" />
<Compile Include="Messaging\Messages\CommandMessage.cs" />
<Compile Include="Messaging\Messages\ErrorMessage.cs" />
<Compile Include="Messaging\Messages\FlexMessage.cs" />
<Compile Include="Messaging\Messages\RemotingMessage.cs" />
<Compile Include="Messaging\RtmpEvent.cs" />
<Compile Include="Net\ChunkMessageHeaderType.cs" />
<Compile Include="Net\ClientDisconnectedException.cs" />
<Compile Include="Net\EventReceivedEventArgs.cs" />
<Compile Include="Net\IStreamConnect.cs" />
<Compile Include="Net\MessageType.cs" />
<Compile Include="Net\RtmpClient.cs" />
<Compile Include="Net\RtmpConnect.cs" />
<Compile Include="Net\FlvTagHeader.cs" />
<Compile Include="Net\RtmpHeader.cs" />
<Compile Include="Net\FlvPacket.cs" />
<Compile Include="Net\RtmpPacket.cs" />
<Compile Include="Net\RtmpPacketReader.cs" />
<Compile Include="Net\FlvPacketWriter.cs" />
<Compile Include="Net\RtmpPacketWriter.cs" />
<Compile Include="Net\RtmpServer.cs" />
<Compile Include="Net\StatusAsObject.cs" />
<Compile Include="Net\WebsocketConnect.cs" />
<Compile Include="IO\WebsocketStream.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RtmpSharp.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="rtmp-sharp.snk">
<Link>rtmp-sharp.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/JackBranson/rtmp-sharp-server.git
[email protected]:JackBranson/rtmp-sharp-server.git
JackBranson
rtmp-sharp-server
rtmp-sharp-server
master

搜索帮助