You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
Create a view and add @addTagHelper "*, WebApplication2" and <foo> tag.
Run the app and it works fine.
Now add RazorPreCompilation code
public class RazorPreCompilation : RazorPreCompileModule
{
public RazorPreCompilation(IServiceProvider provider) : base(provider)
{
}
}
and build the app
I am seeing following error
Cannot resolve TagHelper containing assembly 'WebApplication2'. Error: Could not load file or assembly 'Microsoft.AspNet.Razor.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
The text was updated successfully, but these errors were encountered:
Add a simple taghelper
Create a view and add
@addTagHelper "*, WebApplication2"
and<foo>
tag.Run the app and it works fine.
Now add
RazorPreCompilation
codeand build the app
I am seeing following error
The text was updated successfully, but these errors were encountered: