<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
<TargetFramework>net6.0</TargetFramework>
|
<Nullable>enable</Nullable>
|
<ImplicitUsings>enable</ImplicitUsings>
|
<GenerateDocumentationFile>False</GenerateDocumentationFile>
|
<Platforms>AnyCPU;x64</Platforms>
|
</PropertyGroup>
|
|
<ItemGroup>
|
<None Remove="index.html" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<EmbeddedResource Include="index.html">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</EmbeddedResource>
|
</ItemGroup>
|
|
<ItemGroup>
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\WIDESEAWCS_Common\WIDESEAWCS_Common.csproj" />
|
<ProjectReference Include="..\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csproj" />
|
<ProjectReference Include="..\WIDESEAWCs_TaskInfoService\WIDESEAWCs_TaskInfoService.csproj" />
|
<ProjectReference Include="..\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csproj" />
|
<ProjectReference Include="..\WIDESEAWCS_TelescopicService\WIDESEAWCS_TelescopicService.csproj" />
|
<ProjectReference Include="..\WIDESEAWCS_WMSPart\WIDESEAWCS_WMSPart.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Content Update="nlog.config">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</Content>
|
<Content Update="wwwroot\swg-login.html">
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
</Content>
|
<Content Update="wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Tenant.tsv">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</Content>
|
</ItemGroup>
|
|
<ItemGroup>
|
<Folder Include="wwwroot\WIDESEAWCS_DB.DBSeed.Json\" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<None Update="DownLoad\face-plugin.zip">
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
</None>
|
</ItemGroup>
|
|
</Project>
|