Skip to content

Commit 0e2fdec

Browse files
committed
VersionBump : v1.0.0-preview.1
1 parent 9cfb5f9 commit 0e2fdec

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

src/CodeOfChaos.Ansi.Generators/CodeOfChaos.Ansi.Generators.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- Main package name -->
1818
<PackageId>CodeOfChaos.Ansi.Generators</PackageId>
19-
<Version>1.0.0-preview.0</Version>
19+
<Version>1.0.0-preview.1</Version>
2020
<Authors>Anna Sas</Authors>
2121
<Description>A library to write Ansi Colored text as a stringbuilder</Description>
2222
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-ansi/</PackageProjectUrl>
@@ -31,22 +31,22 @@
3131
</PropertyGroup>
3232

3333
<ItemGroup>
34-
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
35-
<None Include="../../README.md" Pack="true" PackagePath=""/>
36-
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
34+
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
35+
<None Include="../../README.md" Pack="true" PackagePath="" />
36+
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
3737
</ItemGroup>
3838

3939
<!-- Package dependencies -->
4040
<ItemGroup>
41-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all"/>
42-
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" PrivateAssets="all"/>
43-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all"/>
44-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.2.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all"/>
41+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
42+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" PrivateAssets="all" />
43+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
44+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.2.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all" />
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
49-
<None Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false"/>
48+
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
49+
<None Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
5050
</ItemGroup>
5151

5252
</Project>

src/CodeOfChaos.Ansi/CodeOfChaos.Ansi.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Ansi</PackageId>
10-
<Version>1.0.0-preview.0</Version>
10+
<Version>1.0.0-preview.1</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A library to write Ansi Colored text as a stringbuilder</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-ansi/</PackageProjectUrl>
@@ -22,23 +22,23 @@
2222
</PropertyGroup>
2323

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

3030
<ItemGroup>
3131
<!-- ProjectReference for the generator as an analyzer -->
32-
<ProjectReference Include="..\CodeOfChaos.Ansi.Generators\CodeOfChaos.Ansi.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
32+
<ProjectReference Include="..\CodeOfChaos.Ansi.Generators\CodeOfChaos.Ansi.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
3333

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

3939
<ItemGroup>
40-
<None Include="Assets\ASB.CssColors.xml"/>
41-
<AdditionalFiles Include="Assets\ASB.CssColors.xml"/>
40+
<None Include="Assets\ASB.CssColors.xml" />
41+
<AdditionalFiles Include="Assets\ASB.CssColors.xml" />
4242
</ItemGroup>
4343

4444
</Project>

0 commit comments

Comments
 (0)