Skip to content

Commit

Permalink
Update Example to .NET Core 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boggin committed Aug 22, 2019
1 parent 4aebf3c commit ce5f0d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
namespace FeatureFlagger.Example.Console
{
public class ExampleFeatureFlag : IFeatureFlag
public class ExampleFeatureFlag : IFeatureFlagger
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 2,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FeatureFlagger\FeatureFlagger.csproj">
<Private>true</Private>
</ProjectReference>
</ItemGroup>
</Project>

This file was deleted.

0 comments on commit ce5f0d8

Please sign in to comment.