Last active
April 11, 2019 00:48
-
-
Save DoubleCouponDay/976deaa5deca27cc7a5455346aebc9b5 to your computer and use it in GitHub Desktop.
error reproduction for MS senpai
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Azure.WebJobs.Host; | |
| using System.ComponentModel.DataAnnotations; | |
| namespace FunctionApp1 | |
| { | |
| public static class Function1 | |
| { | |
| [FunctionName("Function1")] | |
| public static void Run([TimerTrigger("0 */1 * * * *")]TimerInfo myTimer, TraceWriter log) | |
| { | |
| var test = new AssociatedMetadataTypeTypeDescriptionProvider(typeof(object)); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment