dotnet 8 web api deployed on Azure App Service points to files on local machine
Original message was deleted

#if DEBUG
//app.UseCors(x => x.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod());
//app.UseMiniProfiler();
//https://localhost:7231/profiler/results-index
#endif
app.MapGet("/", () => "API is running");
app.MapControllers();
await app.RunAsync();
}
catch (Exception ex)
{
var logger = LogManager.GetLogger("Program");
logger.Error(ex, "An error occurred");
throw;
}
finally
{
LogManager.Shutdown();
}<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>c5efa678-eee1-4b25-bacf-69739ff6a522</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.9.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.3.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="NLog.Extensions.AzureBlobStorage" Version="4.4.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.11" />
</ItemGroup>
<ItemGroup>
<Content Update="Nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\images\employee-invitation\canary-logo.svg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\images\employee-invitation\lets-get-started-button.svg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\images\employee-invitation\letterbox-icon.svg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>