Skip to content

Commit cd577c1

Browse files
committed
VersionBump : v4.9.0
1 parent a2a5907 commit cd577c1

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

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

Lines changed: 10 additions & 10 deletions
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.8.0</Version>
14+
<Version>4.9.0</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,23 +26,23 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
30-
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false"/>
31-
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
29+
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
30+
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false" />
31+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
3232
</ItemGroup>
3333

3434
<ItemGroup>
3535
<PackageReference Include="IsExternalInit" Version="1.0.3">
3636
<PrivateAssets>all</PrivateAssets>
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3838
</PackageReference>
39-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all"/>
40-
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" PrivateAssets="all"/>
41-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" PrivateAssets="all"/>
42-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.4.1" Pack="true" GeneratePathProperty="true" PrivateAssets="all"/>
39+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
40+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" PrivateAssets="all" />
41+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" PrivateAssets="all" />
42+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.4.1" Pack="true" GeneratePathProperty="true" PrivateAssets="all" />
4343
</ItemGroup>
4444
<ItemGroup>
45-
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
46-
<None Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
45+
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
46+
<None Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4747
</ItemGroup>
4848
</Project>

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

Lines changed: 9 additions & 9 deletions
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.8.0</Version>
11+
<Version>4.9.0</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,22 +23,22 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
27-
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false"/>
28-
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
26+
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
27+
<None Include="../../README.md" Pack="true" PackagePath="" Visible="false" />
28+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
2929
</ItemGroup>
3030

3131
<ItemGroup>
3232
<!-- ProjectReference for the generator as an analyzer -->
33-
<ProjectReference Include="..\CodeOfChaos.CliArgsParser.Generators\CodeOfChaos.CliArgsParser.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
34-
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj"/>
33+
<ProjectReference Include="..\CodeOfChaos.CliArgsParser.Generators\CodeOfChaos.CliArgsParser.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
34+
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj" />
3535

3636
<!-- Ugly, but this is because of some weirdness with how analyzers are imported through a project reference -->
37-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.4.1" GeneratePathProperty="true" PrivateAssets="all"/>
38-
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll"/>
37+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.4.1" GeneratePathProperty="true" PrivateAssets="all" />
38+
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" />
3939
</ItemGroup>
4040

4141
<ItemGroup>
42-
<PackageReference Include="CodeOfChaos.Ansi" Version="1.0.0"/>
42+
<PackageReference Include="CodeOfChaos.Ansi" Version="1.0.0" />
4343
</ItemGroup>
4444
</Project>

src/CodeOfChaos.CliArgsParser/CodeOfChaos.CliArgsParser.csproj

Lines changed: 4 additions & 4 deletions
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.8.0</Version>
10+
<Version>4.9.0</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,9 +22,9 @@
2222
</PropertyGroup>
2323

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

3030
</Project>

0 commit comments

Comments
 (0)