This is a collection of custom templates for VB.NET projects and items, mostly intended to fill in the gaps where the official templates don't provide this important support.
Most templates here provide both .NET Core and .NET Framework editions. The .NET Core editions are installed using dotnet new
, and the .NET Framework editions are installed using a .VSIX file that you'll generate by building the deployment project for the template. (The deployment project for each is generally named Installer
.)
To install:
- Clone this repository to a folder on your local system (e.g.
D:\Templates
) - At a command prompt,
cd
to the project folder (e.g.D:\Templates\Projects\AzureFunctions\<TriggerType>\Project
)
...where <TriggerType>
is the template you want (e.g. Http
)
- Issue the
dotnet new
command to install the template:
dotnet new -i .\
- Alternatively, to install from NuGet without cloning, issue this command instead:
dotnet new -i Intexx.Templates
To use:
- Open a command prompt
- Create and
cd
to a subfolder for the new project (e.g.D:\Projects\AzureFunctionHttp
) - Issue the
dotnet new
command to create the project:
dotnet new azure-function-<TriggerType>
...where <TriggerType>
is the template you want (e.g. http
)
No templates yet. Keep checking back.