chatsharp/ChatSharp/ChatSharp.csproj
Drew DeVault 40389177f1 Move channel users into a shared user pool
This makes it so that there are never two user objects for any given
user on the network.
2015-07-31 18:42:52 -04:00

90 lines
3.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4033AFFA-BEA3-4BDF-84EA-59A23360FD36}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ChatSharp</RootNamespace>
<AssemblyName>ChatSharp</AssemblyName>
<FileAlignment>512</FileAlignment>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</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>
</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.Core" />
<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="ChannelCollection.cs" />
<Compile Include="ClientSettings.cs" />
<Compile Include="Events\ChannelTopicEventArgs.cs" />
<Compile Include="Events\ChannelEventArgs.cs" />
<Compile Include="Events\ChannelUserEventArgs.cs" />
<Compile Include="Events\IrcNoticeEventArgs.cs" />
<Compile Include="Events\ErronousNickEventArgs.cs" />
<Compile Include="Events\ModeChangeEventArgs.cs" />
<Compile Include="Events\PrivateMessageEventArgs.cs" />
<Compile Include="Events\RawMessageEventArgs.cs" />
<Compile Include="Events\ServerMOTDEventArgs.cs" />
<Compile Include="Events\SocketErrorEventArgs.cs" />
<Compile Include="Events\SupportsEventArgs.cs" />
<Compile Include="Events\WhoIsEventArgs.cs" />
<Compile Include="Handlers\ChannelHandlers.cs" />
<Compile Include="Handlers\ListingHandlers.cs" />
<Compile Include="Handlers\MessageHandlers.cs" />
<Compile Include="Handlers\MOTDHandlers.cs" />
<Compile Include="Handlers\ServerHandlers.cs" />
<Compile Include="Handlers\UserHandlers.cs" />
<Compile Include="IrcChannel.cs" />
<Compile Include="IrcClient.Commands.cs" />
<Compile Include="IrcClient.cs" />
<Compile Include="IrcMessage.cs" />
<Compile Include="IrcProtocolException.cs" />
<Compile Include="IrcUser.cs" />
<Compile Include="Mask.cs" />
<Compile Include="MaskCollection.cs" />
<Compile Include="PrivateMessage.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RequestManager.cs" />
<Compile Include="ServerInfo.cs" />
<Compile Include="WhoIs.cs" />
<Compile Include="Events\KickEventArgs.cs" />
<Compile Include="Events\NickChangedEventArgs.cs" />
<Compile Include="UserPool.cs" />
<Compile Include="UserPoolView.cs" />
<Compile Include="Events\UserEventArgs.cs" />
</ItemGroup>
<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>