Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Boggin committed Jul 12, 2019
1 parent 22967a4 commit d3d4b56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 7,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 1,5 @@
namespace FeatureFlagger.ConfigurationWriters
{
using System;
using FeatureFlagger.Domain;

public interface IConfigurationWriter
Expand Down
5 changes: 3 additions & 2 deletions src/FeatureFlagger.ConfigurationWriters/StoreWriter.cs
Original file line number Diff line number Diff line change
@@ -1,12 1,13 @@
namespace FeatureFlagger.ConfigurationWriters
{
using System;
using System.ComponentModel.Composition;
using System.Composition;
using System.Configuration;
using System.Data.SqlClient;
using System.Text;
using FeatureFlagger;

using Feature = RoyalLondon.IntermediaryManagement.Api.FeatureFlagger.Domain.Feature;
using Feature = Domain.Feature;

[Export(typeof(IConfigurationWriter))]
public class StoreWriter : IConfigurationWriter
Expand Down
Empty file.

0 comments on commit d3d4b56

Please sign in to comment.