diff options
author | ROM-Knowledgeware <tal@kmrom.com> | 2017-11-22 18:30:41 +0200 |
---|---|---|
committer | ROM-Knowledgeware <tal@kmrom.com> | 2017-11-22 18:30:41 +0200 |
commit | a7a6aba45084e98996551712458b9e38ead2593c (patch) | |
tree | ce7d13442cea2d0e73ca47c72780a025ff6b33bc | |
parent | Perf. opts. in GCMBlockCipher (diff) | |
download | BouncyCastle.NET-ed25519-a7a6aba45084e98996551712458b9e38ead2593c.tar.xz |
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.
-rw-r--r-- | crypto/BouncyCastle.csproj | 8 |
1 files changed, 4 insertions, 4 deletions
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 @@ <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> - <OutputPath>bin\Debug\lib\net20</OutputPath> - <IntermediateOutputPath>obj\Debug\lib\net20</IntermediateOutputPath> + <OutputPath>bin\Debug\lib\net20\</OutputPath> + <IntermediateOutputPath>obj\Debug\lib\net20\</IntermediateOutputPath> <DefineConstants>DEBUG;TRACE;INCLUDE_IDEA;</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> @@ -25,8 +25,8 @@ </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <Optimize>true</Optimize> - <OutputPath>bin\Release\lib\net20</OutputPath> - <IntermediateOutputPath>obj\Release\lib\net20</IntermediateOutputPath> + <OutputPath>bin\Release\lib\net20\</OutputPath> + <IntermediateOutputPath>obj\Release\lib\net20\</IntermediateOutputPath> <DefineConstants>TRACE;INCLUDE_IDEA;</DefineConstants> <DocumentationFile>doc\BouncyCastle.xml</DocumentationFile> <ErrorReport>prompt</ErrorReport> |