Skip to content

Commit fd11100

Browse files
committed
VersionBump : v4.3.1
1 parent 3dfe98f commit fd11100

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

src/CodeOfChaos.CliArgsParser.Generators/CodeOfChaos.CliArgsParser.Generators.csproj

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<!-- Main package name -->
1313
<PackageId>CodeOfChaos.CliArgsParser.Generators</PackageId>
14-
<Version>4.3.0</Version>
14+
<Version>4.3.1</Version>
1515
<Authors>Anna Sas</Authors>
1616
<Description>CliArgsParser is a library built around Dependency Injection to allow you to create CLI tools with ease</Description>
1717
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-cli_args_parser/</PackageProjectUrl>
@@ -26,19 +26,20 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
30-
<None Include="..\..\README.md" Pack="true" PackagePath=""/>
29+
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
30+
<None Include="..\..\README.md" Pack="true" PackagePath="" />
31+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" />
3132
</ItemGroup>
3233

3334
<ItemGroup>
3435
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0">
3536
<PrivateAssets>all</PrivateAssets>
3637
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3738
</PackageReference>
38-
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0"/>
39-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0"/>
39+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" />
40+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
4041
</ItemGroup>
4142
<ItemGroup>
42-
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
43+
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4344
</ItemGroup>
4445
</Project>

src/CodeOfChaos.CliArgsParser.Library/CodeOfChaos.CliArgsParser.Library.csproj

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.CliArgsParser.Library</PackageId>
11-
<Version>4.3.0</Version>
11+
<Version>4.3.1</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>CliArgsParser is a library built around Dependency Injection to allow you to create CLI tools with ease</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-cli_args_parser/</PackageProjectUrl>
@@ -23,16 +23,17 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
27-
<None Include="..\..\README.md" Pack="true" PackagePath=""/>
26+
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
27+
<None Include="..\..\README.md" Pack="true" PackagePath="" />
28+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" />
2829
</ItemGroup>
2930

3031
<ItemGroup>
31-
<ProjectReference Include="..\CodeOfChaos.CliArgsParser.Generators\CodeOfChaos.CliArgsParser.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
32-
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj"/>
32+
<ProjectReference Include="..\CodeOfChaos.CliArgsParser.Generators\CodeOfChaos.CliArgsParser.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
33+
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj" />
3334
</ItemGroup>
3435

3536
<ItemGroup>
36-
<PackageReference Include="AterraEngine.Unions" Version="2.7.0"/>
37+
<PackageReference Include="AterraEngine.Unions" Version="2.7.0" />
3738
</ItemGroup>
3839
</Project>

src/CodeOfChaos.CliArgsParser/CodeOfChaos.CliArgsParser.csproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.CliArgsParser</PackageId>
10-
<Version>4.3.0</Version>
10+
<Version>4.3.1</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>CliArgsParser is a library built around Dependency Injection to allow you to create CLI tools with ease</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-cli_args_parser/</PackageProjectUrl>
@@ -22,8 +22,9 @@
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<None Include="../../LICENSE" Pack="true" PackagePath=""/>
26-
<None Include="../../README.md" Pack="true" PackagePath=""/>
25+
<None Include="../../LICENSE" Pack="true" PackagePath="" />
26+
<None Include="../../README.md" Pack="true" PackagePath="" />
27+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" />
2728
</ItemGroup>
2829

2930
</Project>

0 commit comments

Comments
 (0)