Files
Dimitar Byalkov cc0cc3d7f7 Events on desktop
2023-06-09 07:18:11 +02:00

30 lines
839 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Data\Data.csproj" />
<ProjectReference Include="..\Logic\Logic.csproj" />
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="EventForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="ComplaintForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="AnnouncementForm.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>