24 lines
699 B
XML
24 lines
699 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<!-- Container Settings -->
|
|
<EnableSdkContainerDebugging>True</EnableSdkContainerDebugging>
|
|
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
|
|
<ContainerRepository>creative</ContainerRepository>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.4" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ContainerPort Include="8080" Type="tcp" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|