Questions tagged [sidewaffle]

SideWaffle is an open source Visual Studio extension for community created Visual Studio item and project templates.

Definition:

SideWaffle is an open source Visual Studio extension for community-created item and project templates for Visual Studio 2012/2013/2015.

Screenshot:

SideWaffle Screenshot Image Source: https://github.com/ligershark/side-waffle/blob/master/screenshot.png

Important Links:

24 questions
30
votes
7 answers

Extension could not be found. Please make sure the extension has been installed

I've been working on a VS extension that creates a couple of files with some boilercode using SideWaffle and I was having a problem where, whenever I'd add a new item, my boilercode item would be under "My Custom Templates". I found this in the…
4
votes
2 answers

unable to use services injected from constructor in methods in typescript using angularjs

I have created an Angular Controller using SideWaffle's Template for Angular TypScript Controller. My HomeController.ts file looks as follows. interface IHomeControllerScope extends ng.IScope { GetEmployee: (id) =>…
Chintan Shah
  • 3,133
  • 4
  • 30
  • 39
3
votes
1 answer

VSIX extension install but item-template not shown in visual studio

Currently I am Learning VSIX Item Template And Make simple item-template by referring this link https://blogs.endjin.com/2014/07/a-step-by-step-guide-to-developing-visual-studio-item-templates-using-sidewaffle/ this is my project picture that show I…
Shah Niral
  • 121
  • 11
3
votes
2 answers

Typescript + Angular "controller as" Sidewaffle template doesn't work out of the box

Forgive me for the wall of code that follows, but there's only one small change per block and each change is commented. I'm trying to use the Angular+Typescript "controller as" template that came with the Sidewaffle template pack. This is what the…
joelmdev
  • 11,083
  • 10
  • 65
  • 89
3
votes
1 answer

SideWaffle - create your own template set to share

I am looking to create a set of templates to use with my Dev team, but I don't want them to be available to everyone on the GitHub project. How can I create my own subset of templates to share with my team without having to send files or copy paste…
PW Kad
  • 14,953
  • 7
  • 49
  • 82
2
votes
1 answer

Add Nuget packages to a multi-project Sidewaffle template

I have a basic multi-project template created with Sidewaffle in VS2013 as per the guide here; https://github.com/ligershark/side-waffle/wiki/How-to-create-a-multi-project-template I'm struggling to find accurate steps to add all the NuGet…
SeeNoWeevil
  • 2,549
  • 4
  • 26
  • 39
2
votes
2 answers

TemplateBuilder and SideWaffle. Project template. Change default root namespace

I have successfully created a multiproject template using this guide: https://github.com/ligershark/side-waffle/wiki/How-to-create-a-multi-project-template The issue im having is the ability to change the default namespace and default assembly name…
ThBlitz
  • 493
  • 4
  • 17
1
vote
1 answer

How to develop website compatible with mobile using asp.net and c#

i have got to develop website ASP NET C# with webpages compatibles with mobile i working with this article Visual Studio Tools for Bootstrap i have installed on project the SideWaffle.Creator 2017 but i don't find new Item ASP.NET Scaffolding T4…
user13975168
1
vote
1 answer

Visual Studio item templates only available for console applications

I'm currently putting together a .vsix which contains various item and project templates using SideWaffle and TemplateBuilder v1.1.4.9-beta. When running the project in an experimental instance, I can see all of the project templates where they…
Luke Pothier
  • 1,030
  • 1
  • 7
  • 19
1
vote
0 answers

Custom scaffolding xproj project

I'm trying to write a custom scaffolding for my asp.core project in visual studio. I created new extensibility project that use SideWaffle templates to generate files and necessary staff. I have problem with one line. My CodeGenerator context can't…
Ridikk12
  • 406
  • 1
  • 4
  • 13
1
vote
0 answers

Nancy Empty Self Hosting - System.AccessViolationException

I am using Visual Studio 2015 Community Edition in Administrator mode. I installed SideWaffle Template Pack v1.21.400. I created a new Nancy Empty Self Host Project. The below is the Source Code: using System; using Nancy.Hosting.Self; namespace…
Bala Sakthis
  • 664
  • 1
  • 8
  • 20
1
vote
1 answer

Custom template namespace error

My custom project template uses Sidewaffle in Visual Studio. It works fine until I try to add a new class to the existing project. Whenever a new class is added, the namespace is the same as the one in the project I used to create the template - as…
Zach
  • 237
  • 4
  • 16
0
votes
1 answer

TemplateBuilder _preprocess - generate new guid as value

I am using sidewaffle TemplateBuilder to create a multi project solution. In one of my projects i have a GUID i would like to change during _preprocess generating a new GUID in its place. Something like: add key="base(new …
TeeCee
  • 37
  • 4
0
votes
1 answer

How can I create a custom ASP.NET MVC project template?

Background: I am attempting to create a new C# project template for ASP.NET MVC using Visual Studio 2013 Ultimate Update 5. To start, I create an Web application from the empty template and include MVC references. Then, I add all of the basic…
poppertech
  • 1,286
  • 2
  • 9
  • 17
0
votes
1 answer

How to create a Custom Scaffolding in multiple projects (mvc + class libraries)

I have a project consisting of few projects (one MVC Application and 3 class libraries for business logic and data access). I am new to building scaffolding extension and was wondering if I can create a Custom Scaffolder which can generate…
1
2