c969-project/C969Project/C969Project.csproj
2025-06-26 21:10:19 -05:00

49 lines
1.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MySql.Data" Version="9.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="Forms\AddOrUpdateAppointmentForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\AddUpdateCustomerForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\AppointmentsForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\CustomersForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\DashboardForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\LoginForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="Forms\ReportsForm.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="locale\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>