Skip to content

Commit

Permalink
updates to resolve appveyor build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
calloncampbell committed Jul 28, 2015
1 parent 449d317 commit ee2d50c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ function Invoke-NuGetPackProj($csproj)

function Invoke-NuGetPackSpec($nuspec, $version)
{
md "..\Build\NuGet"
nuget pack $nuspec -Version $version -OutputDirectory ..\Build\NuGet

nuget pack $nuspec -Version $version -OutputDirectory ..\
}

function Invoke-NuGetPack($version)
Expand Down
4 changes: 2 additions & 2 deletions src/ReflectSoftware.Insight.Extensions.Log4net 2.0.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Build\Libraries\net20\</OutputPath>
<OutputPath>bin\debug\net20\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET20</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -55,7 +55,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Build\Libraries\net20\</OutputPath>
<OutputPath>bin\release\net20\</OutputPath>
<DefineConstants>TRACE;NET20</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
4 changes: 2 additions & 2 deletions src/ReflectSoftware.Insight.Extensions.Log4net 4.0.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Build\Libraries\net40\</OutputPath>
<OutputPath>bin\debug\net40\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -55,7 +55,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Build\Libraries\net40\</OutputPath>
<OutputPath>bin\release\net40\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
4 changes: 2 additions & 2 deletions src/ReflectSoftware.Insight.Extensions.Log4net 4.5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Build\Libraries\net45\</OutputPath>
<OutputPath>bin\debug\net45\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -56,7 +56,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Build\Libraries\net45\</OutputPath>
<OutputPath>bin\release\net45\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
6 changes: 3 additions & 3 deletions src/ReflectSoftware.Insight.Extensions.Log4net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ For help on configuration, please see our documentation on the website (https://
</references>
</metadata>
<files>
<file src="..\Build\Libraries\net20\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net20\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="..\Build\Libraries\net40\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net40\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="..\Build\Libraries\net45\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net45\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="bin\release\net20\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net20\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="bin\release\net40\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net40\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="bin\release\net45\ReflectSoftware.Insight.Extensions.Log4net.dll" target="lib\net45\ReflectSoftware.Insight.Extensions.Log4net.dll" />
<file src="readme.txt" target="readme.txt" />
</files>
</package>

0 comments on commit ee2d50c

Please sign in to comment.