Skip to content

Commit

Permalink
*.csproj: use log4net and NUnit from NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
meebey committed Nov 4, 2015
1 parent 6fe9bab commit b3665f6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
10 changes: 6 additions & 4 deletions SmartIrc4net.csproj
Expand Up @@ -75,11 +75,10 @@
<Compile Include="src\IrcClient\ChannelModeChangeInfo.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=a5715cc6d5c3540b">
<Package>log4net</Package>
<SpecificVersion>False</SpecificVersion>
<Reference Include="log4net">
<HintPath>..\..\src\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand All @@ -89,4 +88,7 @@
<Name>StarkSoftProxy</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions packages.config
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="log4net" version="2.0.3" targetFramework="net40" />
</packages>
4 changes: 4 additions & 0 deletions tests/packages.config
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.6.4" targetFramework="net40" />
</packages>
7 changes: 5 additions & 2 deletions tests/tests.csproj
Expand Up @@ -28,10 +28,10 @@
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="nunit.framework">
<Private>False</Private>
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="ChannelModeChangeInfoTests.cs" />
Expand All @@ -43,4 +43,7 @@
<Name>SmartIrc4net</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>

0 comments on commit b3665f6

Please sign in to comment.