EscribePassword/EscribePassword.csproj

40 lines
1.3 KiB
XML
Raw Normal View History

2024-06-15 06:24:07 -03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
2024-06-15 14:33:52 -03:00
<UseWindowsForms>True</UseWindowsForms>
2024-06-15 06:24:07 -03:00
</PropertyGroup>
<ItemGroup>
<Resource Include="C:\Trabajo\Graphics\Icons\close.png" Link="Icons\close.png" />
<Resource Include="C:\Trabajo\Graphics\Icons\delete.png" Link="Icons\delete.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="C:\Trabajo\Graphics\Icons\add-button.png" Link="Icons\add-button.png" />
<Resource Include="C:\Trabajo\Graphics\Icons\remove.png" Link="Icons\remove.png" />
<Resource Include="C:\Trabajo\Graphics\Icons\use.png" Link="Icons\use.png" />
</ItemGroup>
2024-06-15 06:24:07 -03:00
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.0" />
2024-06-15 14:33:52 -03:00
<PackageReference Include="InputSimulator" Version="1.0.4" />
<PackageReference Include="MouseKeyHook" Version="5.7.1" />
2024-06-15 06:24:07 -03:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
2024-06-16 12:39:45 -03:00
<ItemGroup>
<Folder Include="Icons\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Libraries\libObsidean\libObsidean.csproj" />
2024-06-16 12:39:45 -03:00
</ItemGroup>
2024-06-15 06:24:07 -03:00
</Project>