Skip to content

Commit a7a6aba

Browse files
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.
1 parent f8d638b commit a7a6aba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crypto/BouncyCastle.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
<DebugSymbols>true</DebugSymbols>
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\lib\net20</OutputPath>
20-
<IntermediateOutputPath>obj\Debug\lib\net20</IntermediateOutputPath>
19+
<OutputPath>bin\Debug\lib\net20\</OutputPath>
20+
<IntermediateOutputPath>obj\Debug\lib\net20\</IntermediateOutputPath>
2121
<DefineConstants>DEBUG;TRACE;INCLUDE_IDEA;</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
2424
<ConsolePause>false</ConsolePause>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\lib\net20</OutputPath>
29-
<IntermediateOutputPath>obj\Release\lib\net20</IntermediateOutputPath>
28+
<OutputPath>bin\Release\lib\net20\</OutputPath>
29+
<IntermediateOutputPath>obj\Release\lib\net20\</IntermediateOutputPath>
3030
<DefineConstants>TRACE;INCLUDE_IDEA;</DefineConstants>
3131
<DocumentationFile>doc\BouncyCastle.xml</DocumentationFile>
3232
<ErrorReport>prompt</ErrorReport>

0 commit comments

Comments
 (0)