Skip to content

Commit 49cb72a

Browse files
committed
Fix same configured WinRT portable cannot refer msgpack package.
1 parent 41e18b6 commit 49cb72a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Pack.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $buildOptions += '/p:Configuration=Release'
1919
&$builder $sln $buildOptions
2020
&$builder $slnCompat $buildOptions
2121

22-
$winFile = New-Object IO.FileInfo( ".\bin\portable-windows8+wpa\MsgPack.dll" )
22+
$winFile = New-Object IO.FileInfo( ".\bin\portable-net45+win+wpa81\MsgPack.dll" )
2323
$xamarinFile = New-Object IO.FileInfo( ".\bin\monotouch\MsgPack.dll" )
2424
if( ( $winFile.LastWriteTime - $xamarinFile.LastWriteTime ).Days -ne 0 )
2525
{

src/MsgPack.WinRT.Portable/MsgPack.WinRT.Portable.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2929
<DebugType>pdbonly</DebugType>
3030
<Optimize>true</Optimize>
31-
<OutputPath>..\..\bin\portable-windows8+wpa\</OutputPath>
31+
<OutputPath>..\..\bin\portable-net45+win+wpa81\</OutputPath>
3232
<DefineConstants>TRACE;NETFX_CORE</DefineConstants>
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
35-
<DocumentationFile>..\..\bin\portable-windows8+wpa\MsgPack.XML</DocumentationFile>
35+
<DocumentationFile>..\..\bin\portable-net45+win+wpa81\MsgPack.XML</DocumentationFile>
3636
<GenerateLibraryLayout>false</GenerateLibraryLayout>
3737
</PropertyGroup>
3838
<PropertyGroup>

0 commit comments

Comments
 (0)