Files
Keys/App/Keychain.csproj

26 lines
754 B
XML
Raw Normal View History

2025-09-13 17:36:46 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GirCore.Adw-1" Version="0.6.3" />
2025-09-17 17:50:29 +02:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
2025-09-13 17:36:46 +02:00
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="UI/MainWindow/MainWindow.xml" />
<EmbeddedResource Include="UI/AddShortcutWindow/AddShortcutWindow.xml" />
2025-09-13 17:36:46 +02:00
</ItemGroup>
2025-09-22 13:08:08 +02:00
<ItemGroup>
<ProjectReference Include="../Logic/Logic.csproj" />
2025-09-22 15:35:31 +02:00
<ProjectReference Include="../Repository/Repository.csproj" />
2025-09-22 13:08:08 +02:00
</ItemGroup>
2025-09-13 17:36:46 +02:00
</Project>