Skip to content

Commit

Permalink
Added logo (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
idotta authored Jun 3, 2024
1 parent d51a0af commit f536b65
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

![.NET Tests](https://github.com/idotta/SimpleRouter/actions/workflows/dotnet-test.yml/badge.svg)

SimpleRouter is a lightweight, routing library for .NET applications. It was inspired by [ReactiveUI](https://github.com/reactiveui/ReactiveUI) routing and provides a simple and intuitive API for managing navigation within your application.
<div align="center">
<br>
<a href="https://github.com/idotta/SimpleRouter">
<img width="160" heigth="160" src="./images/logo.png">
</a>
<br>
</div>

SimpleRouter is a lightweight and flexible routing library for .NET applications. It was inspired by [ReactiveUI](https://github.com/reactiveui/ReactiveUI) routing and provides a simple and intuitive API for managing navigation within your application.

## Features

Expand Down
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions src/SimpleRouter.Avalonia/SimpleRouter.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>

<PackageId>IDotta.SimpleRouter.Avalonia</PackageId>
<Version>1.0.2</Version>
<Version>1.0.2.1</Version>
<Title>SimpleRouter.Avalonia</Title>
<Product>SimpleRouter.Avalonia</Product>
<Authors>Iúri Dotta</Authors>
Expand All @@ -18,11 +18,15 @@
<RepositoryUrl>https://github.com/idotta/SimpleRouter</RepositoryUrl>
<Copyright>MIT</Copyright>
<Company>Dotta IT Solutions</Company>
<!--<PackageIcon></PackageIcon>-->
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\images\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
Expand Down
8 changes: 6 additions & 2 deletions src/SimpleRouter/SimpleRouter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<LangVersion>latest</LangVersion>

<PackageId>IDotta.SimpleRouter</PackageId>
<Version>1.0.2</Version>
<Version>1.0.2.1</Version>
<Title>SimpleRouter</Title>
<Product>SimpleRouter</Product>
<Authors>Iúri Dotta</Authors>
Expand All @@ -19,11 +19,15 @@
<RepositoryUrl>https://github.com/idotta/SimpleRouter</RepositoryUrl>
<Copyright>MIT</Copyright>
<Company>Dotta IT Solutions</Company>
<!--<PackageIcon></PackageIcon>-->
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\images\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
Expand Down

0 comments on commit f536b65

Please sign in to comment.