Skip to content

Commit a817ec3

Browse files
committed
Merge pull request scriptcs#422 from khellang/module-refactoring
Added nuget reference to Common.Logging in Contracts
2 parents 26f8b90 + a30badb commit a817ec3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/ScriptCs.Contracts/ScriptCs.Contracts.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<Reference Include="Common.Logging">
12+
<Reference Include="Common.Logging, Version=2.1.2.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
13+
<SpecificVersion>False</SpecificVersion>
1314
<HintPath>..\..\packages\Common.Logging.2.1.2\lib\net40\Common.Logging.dll</HintPath>
1415
</Reference>
1516
<Reference Include="System" />
@@ -64,6 +65,7 @@
6465
<Compile Include="ScriptResult.cs" />
6566
</ItemGroup>
6667
<ItemGroup>
68+
<None Include="packages.config" />
6769
<None Include="Properties\ScriptCs.Contracts.nuspec" />
6870
</ItemGroup>
6971
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Common.Logging" version="2.1.2" targetFramework="net45" />
4+
</packages>

0 commit comments

Comments
 (0)