Skip to content

Commit e3132ca

Browse files
authored
Merge pull request #750 from jonsequitur/samples-fixes
update samples
2 parents af60a71 + 7a27699 commit e3132ca

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

samples/tutorial/src/Binding/Binding.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<LangVersion>preview</LangVersion>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.2.0-alpha.19165.1" />
10+
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.20070.2" />
1111
</ItemGroup>
1212

1313
</Project>

samples/tutorial/src/Binding/Formatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
using System;
5-
using System.CommandLine;
5+
using System.CommandLine.Parsing;
66
using System.IO;
77
using System.Linq;
88
using System.Reflection;

samples/tutorial/src/Binding/GetValueSample.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System;
55
using System.CommandLine;
6+
using System.CommandLine.Parsing;
67
using static Binding.Formatter;
78

89
namespace Binding

samples/tutorial/src/Binding/HandlerBindingSample.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
using System;
55
using System.Collections.Generic;
66
using System.CommandLine;
7-
using System.CommandLine.Builder;
87
using System.CommandLine.Invocation;
8+
using System.CommandLine.IO;
9+
using System.CommandLine.Parsing;
910
using System.IO;
1011
using System.Threading.Tasks;
1112
using static Binding.Formatter;

0 commit comments

Comments
 (0)