Tagged Questions
The buildprovider tag has no wiki summary.
9
votes
2answers
381 views
Visual Studio, Razor, BuildProviders and Intellisense
I'm trying to get Intellisense working for razor views in a non-ASP.NET project and would like to understand the relationship between VisualStudio's Razor editor and BuildProviders.
For background, ...
1
vote
1answer
758 views
.NET - Razor outside MVC application - Problems with removing @inherits and providing @model
Sorry for the long question. I broke it up into three problems which can be read separately. If you're able to help me with one problem, please do!
I have a custom implementation of a Razor engine in ...
1
vote
1answer
524 views
Load Web.Config as embedded resource inside a DLL in ASP.NET MVC
Following on from my earlier question around loading views from DLLs under ASP.NET MVC, I've come across the issue of having Views and Controls be strongly typed. An exception is thrown indicating ...
1
vote
2answers
116 views
Build Providers in .net 2.0
How can I determine the actual filename (App_Code_xxx.dll) of the types (classes) which is being built by my build provider.
For instance I have a build provider which injects classes based on some ...
1
vote
2answers
412 views
Why can BuildProvider be used only with ASP.NET website projects?
I was going to try Subsonic, you can generate DAL with buildProvider element in an ASP.NET website project. But I get curious why Web applications or windows applications do not support BuildProvider. ...
0
votes
0answers
61 views
BuildManager.GetCompiledAssembly: How to get it with custom build provider
I don't see a way to get compiled assembly if one has created a custom virtual path provider and build provider. BuildProvider does not provide a method that returns assembly, only type, so how does ...
0
votes
1answer
26 views
BuildProvider: Is it possible to specify the name of the assembly to be generated?
I created a custom virtual path provider and build provider and was wondering if it was possible to somehow specify the name of the assembly that get's generated, rather then letting asp.net come up ...
0
votes
1answer
99 views
Unit testing custom BuildProvider
How can BuildProvider's GenerateCode method be tested. I created a BuildProvider and now I want to unit test it. Is it possible?
Initial question was not clear enough. I don't want to stub ...
0
votes
1answer
62 views
How to test a BuildProvider
I have created a simple BuildProvider as a starting point, and althogh I get no errors, I don't have access to the generated class either. In fact, i don't know if my BuildProvider was even invoked. ...
0
votes
1answer
114 views
Alternatives to Using BuildProviders with Web Applications
I've read that you cannot use a BuildProvider with Web Applications in Visual Studio (or more specifically, you can use it, but your code isn't part of the project)
Are there any other ways to ...