23 lines
877 B
XML
23 lines
877 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.ComponentModel.Composition" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StudentPerformanceBusinessLogic\StudentPerformanceBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\StudentPerformanceContracts\StudentPerformanceContracts.csproj" />
|
|
<ProjectReference Include="..\StudentPerformanceDatabaseImplement\StudentPerformanceDatabaseImplement.csproj" />
|
|
<ProjectReference Include="..\StudentPerformanceDataModels\StudentPerformanceDataModels.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|