Skip to content

Instantly share code, notes, and snippets.

@DoubleCouponDay
Last active April 11, 2019 00:48
Show Gist options
  • Select an option

  • Save DoubleCouponDay/976deaa5deca27cc7a5455346aebc9b5 to your computer and use it in GitHub Desktop.

Select an option

Save DoubleCouponDay/976deaa5deca27cc7a5455346aebc9b5 to your computer and use it in GitHub Desktop.
error reproduction for MS senpai
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