-
Notifications
You must be signed in to change notification settings - Fork 0
/
SmartIrc4net.csproj
90 lines (90 loc) · 3.98 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.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>
</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>
</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>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\AssemblyInfo.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\IrcConnection.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\ProxyType.cs" />
<Compile Include="src\IrcConnection\PrimaryOrFallbackEncoding.cs" />
<Compile Include="src\IrcClient\ServerProperties.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>..\log4net-1.2.11\build\bin\net\1.0\release\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
</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>
</Project>