33 lines
873 B
XML
33 lines
873 B
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>
|
|
<ProjectReference Include="..\Controller\Controller.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Forms\FormFilterStudents.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Forms\FormMain.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Forms\FormSpecs.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Forms\FormUpdSpec.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="Forms\FormUpdStudent.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project> |