Skip to content

Commit ef88b33

Browse files
committed
include local deps
1 parent 7f1e633 commit ef88b33

File tree

7 files changed

+29
-5
lines changed

7 files changed

+29
-5
lines changed

IrcBot.Title/IrcBot.Title.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<HintPath>..\packages\HtmlAgilityPack.1.4.6\lib\Net40\HtmlAgilityPack.dll</HintPath>
3737
</Reference>
3838
<Reference Include="Meebey.SmartIrc4net">
39-
<HintPath>..\..\..\..\..\src\SmartIrc4net\bin\debug\Meebey.SmartIrc4net.dll</HintPath>
39+
<HintPath>..\lib\Meebey.SmartIrc4net.dll</HintPath>
4040
</Reference>
4141
<Reference Include="System" />
4242
<Reference Include="System.Core" />

IrcBot.Utils/IrcBot.Utils.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<Reference Include="Meebey.SmartIrc4net">
34-
<HintPath>..\..\..\..\..\src\SmartIrc4net\bin\debug\Meebey.SmartIrc4net.dll</HintPath>
34+
<HintPath>..\lib\Meebey.SmartIrc4net.dll</HintPath>
3535
</Reference>
3636
<Reference Include="System" />
3737
<Reference Include="System.Core" />

IrcBot/IrcBot.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="log4net">
37-
<HintPath>..\..\..\..\..\src\smuxi\lib\log4net.dll</HintPath>
37+
<HintPath>..\lib\log4net.dll</HintPath>
3838
</Reference>
3939
<Reference Include="Meebey.SmartIrc4net">
40-
<HintPath>..\..\..\..\..\src\SmartIrc4net\bin\debug\Meebey.SmartIrc4net.dll</HintPath>
40+
<HintPath>..\lib\Meebey.SmartIrc4net.dll</HintPath>
4141
</Reference>
4242
<Reference Include="System" />
4343
<Reference Include="System.Core" />
@@ -72,4 +72,4 @@
7272
<Target Name="AfterBuild">
7373
</Target>
7474
-->
75-
</Project>
75+
</Project>

lib/Meebey.SmartIrc4net.dll

162 KB
Binary file not shown.

lib/SmartIrc4net_log.config

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<log4net>
2+
<appender name="Console" type="log4net.Appender.ConsoleAppender">
3+
<layout type="log4net.Layout.PatternLayout">
4+
<!-- Pattern to output the caller's file name and line number -->
5+
<conversionPattern value="%level [%thread] (%file:%line) - %message%newline" />
6+
</layout>
7+
</appender>
8+
9+
<appender name="RollingFile" type="log4net.Appender.RollingFileAppender">
10+
<file value="smartirc4net.log" />
11+
<appendToFile value="true" />
12+
<maximumFileSize value="1024KB" />
13+
<maxSizeRollBackups value="2" />
14+
15+
<layout type="log4net.Layout.PatternLayout">
16+
<conversionPattern value="%level [%thread] (%file:%line) - %message%newline" />
17+
</layout>
18+
</appender>
19+
20+
<root>
21+
<level value="DEBUG" />
22+
<appender-ref ref="RollingFile" />
23+
</root>
24+
</log4net>

lib/StarkSoftProxy.dll

29 KB
Binary file not shown.

lib/log4net.dll

239 KB
Binary file not shown.

0 commit comments

Comments
 (0)