Skip to content

Commit f158d0e

Browse files
authored
Merge pull request #48 from jpdillingham/develop
Refactor handling of list-backed arguments
2 parents 4a07ea1 + 4cacf73 commit f158d0e

File tree

7 files changed

+442
-369
lines changed

7 files changed

+442
-369
lines changed

examples/Example/Example.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
<LangVersion>7</LangVersion>
67
</PropertyGroup>
78

89
<ItemGroup>

src/Utility.CommandLine.Arguments/Arguments.cs

Lines changed: 114 additions & 235 deletions
Large diffs are not rendered by default.

src/Utility.CommandLine.Arguments/Utility.CommandLine.Arguments.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Version>2.0.0</Version>
66
<AssemblyVersion>2.0.1.0</AssemblyVersion>
7+
<LangVersion>7</LangVersion>
78
</PropertyGroup>
89

910
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -17,12 +18,10 @@
1718
</PropertyGroup>
1819

1920
<ItemGroup>
20-
<None Remove="stylecop.json" />
2121
<None Remove="stylecop.ruleset" />
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<AdditionalFiles Include="stylecop.json" />
2625
<AdditionalFiles Include="stylecop.ruleset" />
2726
</ItemGroup>
2827

src/Utility.CommandLine.Arguments/stylecop.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/Utility.CommandLine.Arguments/stylecop.ruleset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,6 @@
6969
<Rule Id="SA1124" Action="None" />
7070
<Rule Id="SA1633" Action="None" />
7171
<Rule Id="SA1649" Action="None" />
72+
<Rule Id="SA1402" Action="None" />
7273
</Rules>
7374
</RuleSet>

0 commit comments

Comments
 (0)