Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 82f5cef

Browse files
committed
Merge pull request #2366 from stephentoub/cryptostream_cleanup
Cleanup minor issues in S.S.C.Encryption left from initial port
2 parents 0774384 + 3490ea1 commit 82f5cef

File tree

3 files changed

+112
-133
lines changed

3 files changed

+112
-133
lines changed

src/System.Security.Cryptography.Encryption/System.Security.Cryptography.Encryption.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.22911.2
4+
VisualStudioVersion = 14.0.22823.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Security.Cryptography.Encryption", "src\System.Security.Cryptography.Encryption.csproj", "{D04A73AE-E418-4ACD-A132-7688435BE8B5}"
77
EndProject
@@ -13,10 +13,10 @@ Global
1313
Release|Any CPU = Release|Any CPU
1414
EndGlobalSection
1515
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Debug|Any CPU.ActiveCfg = Windows_Debug|Any CPU
17-
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Debug|Any CPU.Build.0 = Windows_Debug|Any CPU
18-
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Release|Any CPU.ActiveCfg = Windows_Release|Any CPU
19-
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Release|Any CPU.Build.0 = Windows_Release|Any CPU
16+
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{D04A73AE-E418-4ACD-A132-7688435BE8B5}.Release|Any CPU.Build.0 = Release|Any CPU
2020
{54C20799-0F9C-4921-81E0-B3BEB73B451A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2121
{54C20799-0F9C-4921-81E0-B3BEB73B451A}.Debug|Any CPU.Build.0 = Debug|Any CPU
2222
{54C20799-0F9C-4921-81E0-B3BEB73B451A}.Release|Any CPU.ActiveCfg = Debug|Any CPU

src/System.Security.Cryptography.Encryption/src/System.Security.Cryptography.Encryption.csproj

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,15 @@
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
44
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Windows_Debug</Configuration>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{D04A73AE-E418-4ACD-A132-7688435BE8B5}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AssemblyName>System.Security.Cryptography.Encryption</AssemblyName>
1010
<AssemblyVersion>4.0.0.0</AssemblyVersion>
1111
</PropertyGroup>
12-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Debug|AnyCPU' " />
13-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux_Release|AnyCPU' " />
14-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'OSX_Debug|AnyCPU' " />
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'OSX_Release|AnyCPU' " />
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Windows_Debug|AnyCPU' " />
17-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Windows_Release|AnyCPU' " />
12+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
13+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
1814
<ItemGroup>
1915
<Compile Include="System\Security\Cryptography\AsymmetricAlgorithm.cs" />
2016
<Compile Include="System\Security\Cryptography\CipherMode.cs" />

0 commit comments

Comments
 (0)