diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 02:28:35 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 02:28:35 +0700 |
commit | 57d62363643bfcdfcad1b00ff3ae2b0e993e22f3 (patch) | |
tree | f507c8958b4ca535cb3824261ec6db702828946a | |
parent | Cleanup redundant test classes (diff) | |
download | BouncyCastle.NET-ed25519-57d62363643bfcdfcad1b00ff3ae2b0e993e22f3.tar.xz |
Target framework v4.0
-rw-r--r-- | crypto/BouncyCastle.csproj | 16 | ||||
-rw-r--r-- | crypto/test/UnitTests.csproj | 7 |
2 files changed, 13 insertions, 10 deletions
diff --git a/crypto/BouncyCastle.csproj b/crypto/BouncyCastle.csproj index f977b6406..7b0066ac4 100644 --- a/crypto/BouncyCastle.csproj +++ b/crypto/BouncyCastle.csproj @@ -10,14 +10,14 @@ <OutputType>Library</OutputType> <RootNamespace>Org.BouncyCastle</RootNamespace> <AssemblyName>BouncyCastle</AssemblyName> - <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> - <OutputPath>bin\Debug\lib\net20\</OutputPath> - <IntermediateOutputPath>obj\Debug\lib\net20\</IntermediateOutputPath> + <OutputPath>bin\Debug\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> @@ -25,14 +25,16 @@ </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <Optimize>true</Optimize> - <OutputPath>bin\Release\lib\net20\</OutputPath> - <IntermediateOutputPath>obj\Release\lib\net20\</IntermediateOutputPath> - <DefineConstants>TRACE</DefineConstants> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants> + </DefineConstants> <DocumentationFile>doc\BouncyCastle.xml</DocumentationFile> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <ConsolePause>false</ConsolePause> <NoWarn>1591</NoWarn> + <DebugType>pdbonly</DebugType> + <DebugSymbols>true</DebugSymbols> </PropertyGroup> <PropertyGroup> <SignAssembly>true</SignAssembly> @@ -1790,4 +1792,4 @@ <None Include="Readme.html" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -</Project> \ No newline at end of file +</Project> diff --git a/crypto/test/UnitTests.csproj b/crypto/test/UnitTests.csproj index ba01de7d0..27bf0782f 100644 --- a/crypto/test/UnitTests.csproj +++ b/crypto/test/UnitTests.csproj @@ -9,14 +9,15 @@ <OutputType>Library</OutputType> <RootNamespace>UnitTests</RootNamespace> <AssemblyName>UnitTests</AssemblyName> - <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug</OutputPath> - <DefineConstants>DEBUG;SEPARATE_UNIT_TESTS</DefineConstants> + <DefineConstants>TRACE;DEBUG;SEPARATE_UNIT_TESTS</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <ConsolePause>false</ConsolePause> @@ -26,7 +27,7 @@ <DebugType>full</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release</OutputPath> - <DefineConstants>SEPARATE_UNIT_TESTS</DefineConstants> + <DefineConstants>TRACE;DEBUG;SEPARATE_UNIT_TESTS</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <ConsolePause>false</ConsolePause> |