Skip to content

Commit

Permalink
Merge branch 'feature/AP-101'
Browse files Browse the repository at this point in the history
  • Loading branch information
adborroto committed Jul 14, 2020
2 parents 8a404a7 + 6f6ec2a commit da36a39
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,5 @@ ASALocalRun/
.localhistory/

# BeatPulse healthcheck temp database
healthchecksdb
healthchecksdb
/src/nuget.exe
1 change: 0 additions & 1 deletion src/Appconfi.Web.Example/Appconfi.Web.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

<ItemGroup>
<ProjectReference Include="..\Appconfi.Web\Appconfi.Web.csproj" />
<ProjectReference Include="..\Appconfi\Appconfi.csproj" />
</ItemGroup>


Expand Down
8 changes: 5 additions & 3 deletions src/Appconfi.Web/Appconfi.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@
<Company>Appconfi</Company>
<Copyright>Copyright © Appconfi 2020</Copyright>
<RepositoryUrl>https://github.com/appconfi/appconfi-csharp</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReleaseNotes>
Version 1.2.0
Version 1.2.1
* Adding web extensions
</PackageReleaseNotes>
<PackageTags>appconfi config configuration cloudconfiguration appconficlient featureflags featuretoggle featureswitch</PackageTags>
<Description>With Appconfi you can instantly change an application setting without introducing any latency to your site. Is as a configuration service that lets you manage your features and configurations without actually deploying new code.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using System;
using Newtonsoft.Json;
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.FileProviders;

namespace Appconfi.Web.Extensions.DependencyInjection
{
Expand Down
21 changes: 21 additions & 0 deletions src/Appconfi.Web/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License (MIT)

Copyright (c) 2019 Appconfi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2 changes: 1 addition & 1 deletion src/Appconfi/Appconfi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Appconfi</PackageId>
<Version>1.2.0</Version>
<Version>1.2.1</Version>
<Authors>Appconfi's Team</Authors>
<Company>Appconfi</Company>
<RepositoryUrl>https://github.com/appconfi/appconfi-csharp</RepositoryUrl>
Expand Down

0 comments on commit da36a39

Please sign in to comment.