Skip to content

Commit 2adeda9

Browse files
committed
Merge branch 'jstedfast-ios-android-fixes'
2 parents f6ceb7f + bb4d36d commit 2adeda9

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

crypto/BouncyCastle.Android.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == 'Any CPU' ">AnyCPU</Platform>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
67
<ProductVersion>8.0.30703</ProductVersion>
78
<SchemaVersion>2.0</SchemaVersion>
@@ -745,6 +746,7 @@
745746
<Compile Include="src\crypto\engines\Cast5Engine.cs" />
746747
<Compile Include="src\crypto\engines\Cast6Engine.cs" />
747748
<Compile Include="src\crypto\engines\ChaChaEngine.cs" />
749+
<Compile Include="src\crypto\engines\ChaCha7539Engine.cs" />
748750
<Compile Include="src\crypto\engines\DesEdeEngine.cs" />
749751
<Compile Include="src\crypto\engines\DesEdeWrapEngine.cs" />
750752
<Compile Include="src\crypto\engines\DesEngine.cs" />
@@ -1445,6 +1447,7 @@
14451447
<Compile Include="src\util\io\pem\PemReader.cs" />
14461448
<Compile Include="src\util\io\pem\PemWriter.cs" />
14471449
<Compile Include="src\util\net\IPAddress.cs" />
1450+
<Compile Include="src\util\TypeExtensions.cs" />
14481451
<Compile Include="src\util\zlib\Adler32.cs" />
14491452
<Compile Include="src\util\zlib\Deflate.cs" />
14501453
<Compile Include="src\util\zlib\InfBlocks.cs" />
@@ -1506,5 +1509,5 @@
15061509
<None Include="Readme.html" />
15071510
<None Include="checklist.txt" />
15081511
</ItemGroup>
1509-
<Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
1510-
</Project>
1512+
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
1513+
</Project>

crypto/BouncyCastle.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == 'Any CPU' ">AnyCPU</Platform>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
67
<ProductVersion>8.0.30703</ProductVersion>
78
<SchemaVersion>2.0</SchemaVersion>

crypto/BouncyCastle.iOS.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == 'Any CPU' ">AnyCPU</Platform>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
67
<ProductVersion>8.0.30703</ProductVersion>
78
<SchemaVersion>2.0</SchemaVersion>
@@ -740,6 +741,7 @@
740741
<Compile Include="src\crypto\engines\Cast5Engine.cs" />
741742
<Compile Include="src\crypto\engines\Cast6Engine.cs" />
742743
<Compile Include="src\crypto\engines\ChaChaEngine.cs" />
744+
<Compile Include="src\crypto\engines\ChaCha7539Engine.cs" />
743745
<Compile Include="src\crypto\engines\DesEdeEngine.cs" />
744746
<Compile Include="src\crypto\engines\DesEdeWrapEngine.cs" />
745747
<Compile Include="src\crypto\engines\DesEngine.cs" />
@@ -1440,6 +1442,7 @@
14401442
<Compile Include="src\util\io\pem\PemReader.cs" />
14411443
<Compile Include="src\util\io\pem\PemWriter.cs" />
14421444
<Compile Include="src\util\net\IPAddress.cs" />
1445+
<Compile Include="src\util\TypeExtensions.cs" />
14431446
<Compile Include="src\util\zlib\Adler32.cs" />
14441447
<Compile Include="src\util\zlib\Deflate.cs" />
14451448
<Compile Include="src\util\zlib\InfBlocks.cs" />
@@ -1502,4 +1505,4 @@
15021505
<None Include="checklist.txt" />
15031506
</ItemGroup>
15041507
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
1505-
</Project>
1508+
</Project>

0 commit comments

Comments
 (0)