Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ data-directory/
## Project Structure

```
Keybinding.Core/ # Main library
Keybinding/ # Main library
├── Contracts/ # Interfaces
├── Models/ # Domain models and musical types
├── Services/ # Service implementations
Expand Down
2 changes: 1 addition & 1 deletion Keybinding.Demo/Keybinding.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
<PackageReference Include="ktsu.Semantics.Strings" /></ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Keybinding.Core\Keybinding.Core.csproj" />
<ProjectReference Include="..\Keybinding\Keybinding.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Keybinding.Test/Keybinding.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Keybinding.Core\Keybinding.Core.csproj" />
<ProjectReference Include="..\Keybinding\Keybinding.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Keybinding.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34330.188
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keybinding.Core", "Keybinding.Core\Keybinding.Core.csproj", "{37BD5244-DFD4-4CD3-A999-1BFA92483BEC}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keybinding", "Keybinding\Keybinding.csproj", "{37BD5244-DFD4-4CD3-A999-1BFA92483BEC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keybinding.Test", "Keybinding.Test\Keybinding.Test.csproj", "{70C62042-8EAE-47A2-8816-26C747D112FD}"
EndProject
Expand Down
File renamed without changes.

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
A comprehensive .NET library for managing keyboard shortcuts and keybindings with support for multiple profiles, command registration, and persistent storage.

[![License](https://img.shields.io/github/license/ktsu-dev/Keybinding.svg?label=License&logo=nuget)](LICENSE.md)
[![NuGet Version](https://img.shields.io/nuget/v/ktsu.Keybinding.Core?label=Stable&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding.Core)
[![NuGet Version](https://img.shields.io/nuget/vpre/ktsu.Keybinding.Core?label=Latest&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding.Core)
[![NuGet Downloads](https://img.shields.io/nuget/dt/ktsu.Keybinding.Core?label=Downloads&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding.Core)
[![NuGet Version](https://img.shields.io/nuget/v/ktsu.Keybinding?label=Stable&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding)
[![NuGet Version](https://img.shields.io/nuget/vpre/ktsu.Keybinding?label=Latest&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding)
[![NuGet Downloads](https://img.shields.io/nuget/dt/ktsu.Keybinding?label=Downloads&logo=nuget)](https://nuget.org/packages/ktsu.Keybinding)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/ktsu-dev/Keybinding?label=Commits&logo=github)](https://github.com/ktsu-dev/Keybinding/commits/main)
[![GitHub contributors](https://img.shields.io/github/contributors/ktsu-dev/Keybinding?label=Contributors&logo=github)](https://github.com/ktsu-dev/Keybinding/graphs/contributors)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/ktsu-dev/Keybinding/dotnet.yml?branch=main&label=Build&logo=github)](https://github.com/ktsu-dev/Keybinding/actions)
Expand All @@ -24,7 +24,7 @@ A comprehensive .NET library for managing keyboard shortcuts and keybindings wit

### Installation

Add a reference to the `Keybinding.Core` project in your application.
Add a reference to the `Keybinding` project in your application.

### Basic Usage

Expand Down
Loading