Files
petwash/PetWashControl/PetWashControl.csproj

26 lines
823 B
XML
Raw Normal View History

2026-02-25 18:30:24 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2026-02-25 10:46:51 +08:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
2026-02-25 15:43:47 +08:00
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
2026-02-26 11:30:31 +08:00
<ItemGroup>
2026-02-26 14:30:48 +08:00
<Resource Include="Images\dog.png" />
<Resource Include="Images\dog1.jpg" />
2026-02-26 11:30:31 +08:00
<Resource Include="Images\qrcode.png" />
</ItemGroup>
2026-02-25 10:46:51 +08:00
</Project>