<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
<TargetFramework>net8.0</TargetFramework>
|
<Nullable>enable</Nullable>
|
<ImplicitUsings>enable</ImplicitUsings>
|
</PropertyGroup>
|
|
<ItemGroup>
|
<None Remove="index.html" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<EmbeddedResource Include="index.html">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</EmbeddedResource>
|
</ItemGroup>
|
|
<ItemGroup>
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\WIDESEA_BasicInfoServices\WIDESEA_BasicInfoServices.csproj" />
|
<ProjectReference Include="..\WIDESEA_Core\WIDESEA_Core.csproj" />
|
<ProjectReference Include="..\WIDESEA_SystemServices\WIDESEA_SystemServices.csproj" />
|
</ItemGroup>
|
|
</Project>
|