You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
737 B
23 lines
737 B
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Database\EDOKA_Database.csproj" />
|
|
<ProjectReference Include="..\DOCGEN\DOCGEN.csproj" />
|
|
<ProjectReference Include="..\EDOKA_Logging\EDOKA_Logging.csproj" />
|
|
<ProjectReference Include="..\Helper\Helper.csproj" />
|
|
<ProjectReference Include="..\Model\Model.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|