Remove Razor view runtime compilation

This commit is contained in:
James Chapman 2023-11-04 16:22:28 +00:00
parent eb06bf1562
commit 03d64364a8
Signed by: jamsch0
GPG Key ID: 765FE58130277547
2 changed files with 0 additions and 9 deletions

View File

@ -10,10 +10,6 @@
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.0-rc.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Groceries.Data\Groceries.Data.csproj" />
</ItemGroup>

View File

@ -47,11 +47,6 @@ var mvc = builder.Services
})
.AddSessionStateTempDataProvider();
if (env.IsDevelopment())
{
mvc.AddRazorRuntimeCompilation();
}
builder.Services.AddDistributedMemoryCache();
builder.Services.AddSession();