Skip to content

Commit

Permalink
Update PCL files
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Aug 25, 2015
1 parent 21abf9f commit e5b86fd
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 25 deletions.
Binary file modified lib/pcl/ServiceStack.Client.dll
Binary file not shown.
Binary file modified lib/pcl/ServiceStack.Text.dll
Binary file not shown.
5 changes: 2 additions & 3 deletions src/ServiceStack.Pcl.Android/PclExport.Net40.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,9 @@ public static bool VerifySignedHash(byte[] DataToVerify, byte[] SignedData, RSAP
return RSAalg.VerifySha1Data(DataToVerify, SignedData);

}
catch (CryptographicException e)
catch (CryptographicException ex)
{
Console.WriteLine(e.Message);

Tracer.Instance.WriteError(ex);
return false;
}
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions src/ServiceStack.Pcl.Mac20/PclExport.Net40.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,9 @@ public static bool VerifySignedHash(byte[] DataToVerify, byte[] SignedData, RSAP
return RSAalg.VerifySha1Data(DataToVerify, SignedData);

}
catch (CryptographicException e)
catch (CryptographicException ex)
{
Console.WriteLine(e.Message);

Tracer.Instance.WriteError(ex);
return false;
}
}
Expand Down
5 changes: 2 additions & 3 deletions src/ServiceStack.Pcl.Net45/PclExport.Net40.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,9 @@ public static bool VerifySignedHash(byte[] DataToVerify, byte[] SignedData, RSAP
return RSAalg.VerifySha1Data(DataToVerify, SignedData);

}
catch (CryptographicException e)
catch (CryptographicException ex)
{
Console.WriteLine(e.Message);

Tracer.Instance.WriteError(ex);
return false;
}
}
Expand Down
13 changes: 6 additions & 7 deletions src/ServiceStack.Pcl.WinStore/ServiceStack.Pcl.WinStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,6 @@
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
<ProjectReference Include="..\..\..\ServiceStack\src\ServiceStack.Client\ServiceStack.Client.PCL.csproj">
<Project>{135808a7-ce69-4c32-be30-25a8ffbf4a58}</Project>
<Name>ServiceStack.Client.PCL</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\ServiceStack.Client\Properties\AssemblyInfo.cs">
<Link>Properties\AssemblyInfo.cs</Link>
Expand All @@ -123,6 +116,12 @@
<HintPath>..\..\lib\pcl\ServiceStack.Text.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.PCL.csproj">
<Project>{42e1c8c0-a163-44cc-92b1-8f416f2c0b01}</Project>
<Name>ServiceStack.Client.PCL</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '11.0' ">
<VisualStudioVersion>11.0</VisualStudioVersion>
</PropertyGroup>
Expand Down
5 changes: 2 additions & 3 deletions src/ServiceStack.Pcl.iOS/PclExport.Net40.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,9 @@ public static bool VerifySignedHash(byte[] DataToVerify, byte[] SignedData, RSAP
return RSAalg.VerifySha1Data(DataToVerify, SignedData);

}
catch (CryptographicException e)
catch (CryptographicException ex)
{
Console.WriteLine(e.Message);

Tracer.Instance.WriteError(ex);
return false;
}
}
Expand Down
5 changes: 2 additions & 3 deletions src/ServiceStack.Pcl.iOS10/PclExport.Net40.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1243,10 +1243,9 @@ public static bool VerifySignedHash(byte[] DataToVerify, byte[] SignedData, RSAP
return RSAalg.VerifySha1Data(DataToVerify, SignedData);

}
catch (CryptographicException e)
catch (CryptographicException ex)
{
Console.WriteLine(e.Message);

Tracer.Instance.WriteError(ex);
return false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/PclTest.Android/Resources/Resource.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion tests/PclTest.WinStore/PclTest.WinStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="PclTest.WinStore_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Logo.png" />
Expand Down

0 comments on commit e5b86fd

Please sign in to comment.