Skip to content

Commit

Permalink
Moved to netstandard2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boggin committed Dec 13, 2018
1 parent 2b8c838 commit 196bfa2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 10 deletions.
2 changes: 1 addition & 1 deletion FeatureFlagger.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 19,6 @@
</dependencies>
</metadata>
<files>
<file src="src\FeatureFlagger\bin\Release\netstandard1.0\*.dll" target="lib/netstandard1.0/" />
<file src="src\FeatureFlagger\bin\Release\netstandard2.0\*.dll" target="lib/netstandard2.0/" />
</files>
</package>
Original file line number Diff line number Diff line change
@@ -1,8 1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Composition" Version="1.1.0" />
<PackageReference Include="System.Composition" Version="1.2.0" />
<PackageReference Include="System.ComponentModel.Composition" Version="4.5.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,9 1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Composition" Version="1.1.0" />
<PackageReference Include="System.Composition" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FeatureFlagger.Domain\FeatureFlagger.Domain.csproj" />
Expand Down
5 changes: 3 additions & 2 deletions src/FeatureFlagger.ConfigurationReaders/FeaturesSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 5,9 @@
using System.Configuration;
using System.Globalization;
using System.Linq;
using System.Xml;

using System.Xml;
using global::FeatureFlagger.Domain;

public class FeaturesSection : IConfigurationSectionHandler
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1059:MembersShouldNotExposeCertainConcreteTypes", MessageId = "System.Xml.XmlNode", Justification = "Standard method")]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 1,6 @@
namespace RoyalLondon.IntermediaryManagement.Api.FeatureFlagger
{
public interface IConfigurationSectionHandler
{
}
}
8 changes: 7 additions & 1 deletion src/FeatureFlagger.Domain/FeatureFlagger.Domain.csproj
Original file line number Diff line number Diff line change
@@ -1,5 1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>Latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<LangVersion>Latest</LangVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/FeatureFlagger/FeatureFlagger.csproj
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FeatureFlagger.Behaviours\FeatureFlagger.Behaviours.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/FeatureFlagger/IFeatureFlag.cs
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
namespace FeatureFlagger
{
public interface IFeatureFlag
public interface IFeatureFlagger
{
}
}

0 comments on commit 196bfa2

Please sign in to comment.