mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 18:56:31 +00:00
20 lines
610 B
XML
20 lines
610 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.6"/>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Azaion.Repository\Azaion.Repository.csproj" />
|
|
<ProjectReference Include="..\Azaion.Video\Azaion.Video.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|