From a7a6aba45084e98996551712458b9e38ead2593c Mon Sep 17 00:00:00 2001 From: ROM-Knowledgeware Date: Wed, 22 Nov 2017 18:30:41 +0200 Subject: BouncyCastle.csproj: Added trailing slash to OutputPath for compatibility with MSBuild v2 Without this fix, MSBuild will name the output file 'net20BouncyCastle.dll'. This change is 100% compatible with newer versions of MSBuild. p.s. When setting the output path with the Visual Studio GUI (any version I tested) a trailing slash is being used. --- crypto/BouncyCastle.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crypto') diff --git a/crypto/BouncyCastle.csproj b/crypto/BouncyCastle.csproj index a5f149620..9e1150c00 100644 --- a/crypto/BouncyCastle.csproj +++ b/crypto/BouncyCastle.csproj @@ -16,8 +16,8 @@ true full false - bin\Debug\lib\net20 - obj\Debug\lib\net20 + bin\Debug\lib\net20\ + obj\Debug\lib\net20\ DEBUG;TRACE;INCLUDE_IDEA; prompt 4 @@ -25,8 +25,8 @@ true - bin\Release\lib\net20 - obj\Release\lib\net20 + bin\Release\lib\net20\ + obj\Release\lib\net20\ TRACE;INCLUDE_IDEA; doc\BouncyCastle.xml prompt -- cgit 1.4.1