Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
fszlin committed Jul 13, 2016
2 parents 19dc1b1 + 3f90d40 commit a020a43
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/Certes.Cli/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"version": "1.0.0"
},
"NLog": "4.4.0-beta13",
"System.CommandLine": "0.1.0-e160707-1"
"System.CommandLine": "0.1.0-e160709-1"
},

"frameworks": {
Expand Down
4 changes: 3 additions & 1 deletion src/Certes/Pkcs/CertificationRequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ public CertificationRequestBuilder(KeyInfo keyInfo)
/// <summary>
/// Initializes a new instance of the <see cref="CertificationRequestBuilder"/> class.
/// </summary>
/// <exception cref="System.NotSupportedException"></exception>
/// <exception cref="System.NotSupportedException">
/// If the provided key is not one of the supported <seealso cref="SignatureAlgorithm"/>.
/// </exception>
public CertificationRequestBuilder()
{
if (keyInfo == null)
Expand Down
14 changes: 4 additions & 10 deletions src/Certes/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@
"title": "Certes ACME Client",
"description": "A client implantation for the Automated Certificate Management Environment (ACME) protocol",
"dependencies": {
"NETStandard.Library": "1.6.0",
"Newtonsoft.Json": "9.0.1",
"Portable.BouncyCastle": "1.8.1.1"
"Portable.BouncyCastle": "1.8.1.1",
"System.Net.Http": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"frameworks": {
"netstandard1.5": {
"imports": "dnxcore50",
"dependencies": {
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Security.Cryptography.Csp": "4.0.0"
}
},
"net45": {}
"netstandard1.3": {}
},
"buildOptions": {
"embed": [
Expand Down
2 changes: 1 addition & 1 deletion test/Certes.Tests/Certes.Tests.xproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>9fdd9052-506d-460d-bf4a-142dab517524</ProjectGuid>
<RootNamespace>AutoCert</RootNamespace>
<RootNamespace>Certes</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
Expand Down
3 changes: 1 addition & 2 deletions test/Certes.Tests/Pkcs/KeyInfoTests.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using Certes;
using Certes.Pkcs;
using System;
using Xunit;

namespace AutoCert.Pkcs
namespace Certes.Pkcs
{
public class KeyInfoTests
{
Expand Down

0 comments on commit a020a43

Please sign in to comment.