aspnetcore/testapps/ApplicationWithConfigureMvc/Views/Home/ViewWithPreprocessor.cshtml

7 lines
112 B
Plaintext

@{
var message = "Hello world message";
#if TEST123
message = "Hello from Test123";
#endif
}
@message