My azure web API through .net core is not working. The site was deployed through VS Code and he is not working.(It was shown error 500.30 InHosting).
My API.csproj
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<UserSecretsId>89e3b1df-3fb4-4947-8463-699a1fe9657a</UserSecretsId>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All"/>
<PackageReference Include="NWebsec.AspNetCore.Middleware" Version="2.0.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\Application.csproj"/>
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj"/>
</ItemGroup>
</Project>
It is working at my computer on production mode - how can I fix it?