Skip to content

Commit

Permalink
VersionBump : v1.0.0-preview.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaSasDev committed Jan 10, 2025
1 parent 9cfb5f9 commit 0e2fdec
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions src/CodeOfChaos.Ansi.Generators/CodeOfChaos.Ansi.Generators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
<None Include="../../README.md" Pack="true" PackagePath=""/>
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>

<!-- Package dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all"/>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" PrivateAssets="all"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all"/>
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.2.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all"/>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.2.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all" />
</ItemGroup>

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

</Project>
18 changes: 9 additions & 9 deletions src/CodeOfChaos.Ansi/CodeOfChaos.Ansi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false"/>
<None Include="../../README.md" Pack="true" PackagePath=""/>
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false"/>
<None Include="../../LICENSE" Pack="true" PackagePath="" Visible="false" />
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="../../assets/icon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>

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

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

<ItemGroup>
<None Include="Assets\ASB.CssColors.xml"/>
<AdditionalFiles Include="Assets\ASB.CssColors.xml"/>
<None Include="Assets\ASB.CssColors.xml" />
<AdditionalFiles Include="Assets\ASB.CssColors.xml" />
</ItemGroup>

</Project>

0 comments on commit 0e2fdec

Please sign in to comment.