Skip to content

Commit

Permalink
Merge pull request #9 from SeanFeldman/develop
Browse files Browse the repository at this point in the history
Release 2.0.0
  • Loading branch information
SeanFeldman authored Dec 25, 2018
2 parents 9432ec1 + 0055d4c commit aa627c3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ServiceBus.AttachmentPlugin" Version="[3.0.0-*, )" />
<PackageReference Include="ServiceBus.AttachmentPlugin" Version="[4.*, )" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="[3.*, )" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/KeyVaultProvider.Tests/KeyVaultProvider.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta2-build3683" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/KeyVaultProvider.Tests/ManualVerification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace KeyVaultProvider.Tests
{
using ServiceBus.AttachmentPlugin;
using Microsoft.Azure.ServiceBus;
using Xunit;

public class ManualVerification
Expand Down
11 changes: 4 additions & 7 deletions src/KeyVaultProvider/Guard.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
using System;

namespace ServiceBus.AttachmentPlugin
static class Guard
{
static class Guard
public static void AgainstEmpty(string argumentName, string value)
{
public static void AgainstEmpty(string argumentName, string value)
if (value != null && string.IsNullOrWhiteSpace(value))
{
if (value != null && string.IsNullOrWhiteSpace(value))
{
throw new ArgumentNullException(argumentName);
}
throw new ArgumentNullException(argumentName);
}
}
}
3 changes: 2 additions & 1 deletion src/KeyVaultProvider/KeyVaultProvider.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using Microsoft.Azure.Services.AppAuthentication;

namespace ServiceBus.AttachmentPlugin
namespace Microsoft.Azure.ServiceBus
{
using System;
using System.Threading.Tasks;
using Microsoft.Azure.KeyVault;
using Microsoft.Azure.ServiceBus;
using Microsoft.IdentityModel.Clients.ActiveDirectory;

/// <summary>
Expand Down
10 changes: 5 additions & 5 deletions src/KeyVaultProvider/KeyVaultProvider.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Description>KeyVault provider for Microsoft Azure ServiceBus attachment plugin</Description>
<Version>1.0.0</Version>
<Version>2.0.0</Version>
<Authors>Sean Feldman</Authors>
<PackageTags>Azure;Service Bus;ServiceBus;.NET;AMQP;IoT;Queue;Topic;Attachment;Plugin</PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/SeanFeldman/ServiceBus.AttachmentPlugin.KeyVaultProvider/develop/images/project-icon.png</PackageIconUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/SeanFeldman/ServiceBus.AttachmentPlugin.KeyVaultProvider/develop/LICENSE</PackageLicenseUrl>
<PackageLicense>https://raw.githubusercontent.com/SeanFeldman/ServiceBus.AttachmentPlugin.KeyVaultProvider/develop/LICENSE</PackageLicense>
<PackageProjectUrl>https://github.com/SeanFeldman/ServiceBus.AttachmentPlugin.KeyVaultProvider</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand All @@ -23,11 +23,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ServiceBus.AttachmentPlugin" Version="[2.2.0, 4.0.0)" />
<PackageReference Include="ServiceBus.AttachmentPlugin" Version="[4.0.0, 5.0.0)" />
<PackageReference Include="Microsoft.Azure.KeyVault" Version="[2.3.2, 3.0.0)" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="[3.19.2, 4.0.0)" />
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="[1.0.3, 2.0.0)" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit aa627c3

Please sign in to comment.