:wave: Hello together! I am enjoying Pulumi and li...
# dotnet
b
👋 Hello together! I am enjoying Pulumi and like it very much! I have written a component resource provider in TypeScript due to the lack of a boilerplate for dotnet. But I would love to rewrite my provider in C#. Does anybody know what is the status of the dotnet boilerplate for component resource providers? It has been announced here https://www.pulumi.com/docs/using-pulumi/pulumi-packages/how-to-author/
e
Not currently on the roadmap. Issue for it is here https://github.com/pulumi/pulumi-dotnet/issues/46 if you want to upvote it.
b
Thanks for providing the link. Is there a chance to get it to the roadmap, soon? Alternatively, could you provide us some guidance in case we would implement and contribute the missing pieces?
e
The smallest necessary fix here probably isn't that big, just adding Construct/Call methods to https://github.com/pulumi/pulumi-dotnet/blob/main/sdk/Pulumi/Provider/Provider.cs which will be a similar shape to what they look like in other languages: e.g. TypeScript https://github.com/pulumi/pulumi/blob/master/sdk/nodejs/provider/server.ts That would get C# on par with TypeScript.