Razor.Templating.Core
Razor.Templating.Core copied to clipboard
AWS lambda support?
I tried using this library on AWS lambda but I get error than views are unable to find. My views are localted in separate RLC which I referenced from lambda project
Hi @vladop , I haven't tested on AWS lambda yet. I'll test & let you know. If possible please provide a sample. Thanks.
We are using this library in AWS Lambdas without any modifications. All you should need to include in the Lambda project csproj file is this:
<PropertyGroup>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Razor.Templating.Core" Version="1.9.0" />
</ItemGroup>
Thats great to know @kyle-covertree. I'm closing this issue then :)