forked from meebey/SmartIrc4net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartIrc4net.csproj
108 lines (108 loc) · 4.97 KB
/
SmartIrc4net.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{91D3003B-7E65-4EAF-8EE1-DA43832E7A9C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>SmartIrc4net</RootNamespace>
<AssemblyName>Meebey.SmartIrc4net</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\debug</OutputPath>
<DefineConstants>TRACE;DEBUG;LOG4NET;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<ConsolePause>false</ConsolePause>
<RunWithWarnings>false</RunWithWarnings>
<Execution>
<Execution clr-version="Net_2_0" />
</Execution>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\release</OutputPath>
<DefineConstants>NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunWithWarnings>false</RunWithWarnings>
<ConsolePause>false</ConsolePause>
<Execution>
<Execution clr-version="Net_2_0" />
</Execution>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\AssemblyInfo.cs" />
<Compile Include="src\IrcConnection\IrcConnection.cs" />
<Compile Include="src\IrcTransport\IIrcTransportManager.cs" />
<Compile Include="src\IrcTransport\IrcTcpTransport.cs" />
<Compile Include="src\IrcTransport\IrcWebSocketTransport.cs" />
<Compile Include="src\IrcCommands\Capability.cs" />
<Compile Include="src\ConcurrentDictionaryEx.cs" />
<Compile Include="src\Logger.cs" />
<Compile Include="src\Consts.cs" />
<Compile Include="src\EventArgs.cs" />
<Compile Include="src\Exceptions.cs" />
<Compile Include="src\IrcConnection\Delegates.cs" />
<Compile Include="src\IrcConnection\EventArgs.cs" />
<Compile Include="src\IrcCommands\IrcCommands.cs" />
<Compile Include="src\IrcCommands\Rfc2812.cs" />
<Compile Include="src\IrcClient\IrcClient.cs" />
<Compile Include="src\IrcClient\IrcMessageData.cs" />
<Compile Include="src\IrcClient\Delegates.cs" />
<Compile Include="src\IrcClient\EventArgs.cs" />
<Compile Include="src\IrcClient\IrcUser.cs" />
<Compile Include="src\IrcClient\Channel.cs" />
<Compile Include="src\IrcClient\NonRfcChannel.cs" />
<Compile Include="src\IrcClient\ChannelUser.cs" />
<Compile Include="src\IrcClient\NonRfcChannelUser.cs" />
<Compile Include="src\IrcConnection\IrcProperties.cs" />
<Compile Include="src\IrcClient\ChannelInfo.cs" />
<Compile Include="src\IrcClient\WhoInfo.cs" />
<Compile Include="src\IrcClient\BanInfo.cs" />
<Compile Include="src\IrcFeatures\DccChat.cs" />
<Compile Include="src\IrcFeatures\DccConnection.cs" />
<Compile Include="src\IrcFeatures\DccSend.cs" />
<Compile Include="src\IrcFeatures\Delegates.cs" />
<Compile Include="src\IrcFeatures\EventArgs.cs" />
<Compile Include="src\IrcFeatures\IrcConstants.cs" />
<Compile Include="src\IrcFeatures\IrcFeatures.cs" />
<Compile Include="src\IrcConnection\PrimaryOrFallbackEncoding.cs" />
<Compile Include="src\IrcClient\ServerProperties.cs" />
<Compile Include="src\IrcClient\ChannelModeChangeInfo.cs" />
<Compile Include="src\IrcTransport\ProxyType.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="websocket-sharp, Version=1.0.2.9373, Culture=neutral, PublicKeyToken=5660b08a1845a91e, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\WebSocketSharp.1.0.3-rc9\lib\websocket-sharp.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="src\starksoftproxy\StarkSoftProxy.csproj">
<Project>{3F8CF2C1-EA37-444F-8693-A3A00B1131D2}</Project>
<Name>StarkSoftProxy</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>