T4MVC 2.6.44 missing T4MVC.settings.t4 file - t4mvc

I downloaded the latest version of T4MVC 2.6.44 from http://mvccontrib.codeplex.com/releases/view/41582. When I unzipped the file, it has T4MVC.tt and T4MVC.cs. And I don't see T4MVC.settings.t4. I double checked that the T4MVCVB version has T4MVCVB.settings.t4. I am getting an error saying that T4MVC.settings.t4 is missing while trying to use T4MVC it in my solution.
Any help on this matter is appreciated.
Update: I found the T4MVC.settings.t4 file at: http://code.google.com/p/funnelweb/source/browse/src/FunnelWeb.Web/T4MVC.settings.t4?r=b2af322275f6bc281ced2dfb533c20fff92edabc&spec=svnb2af322275f6bc281ced2dfb533c20fff92edabc
Does it mean it is not included as part of T4MVC download?
Thanks,
eyob

Sorry, my bad, I just didn't package it correctly last time around. I just fixes it. A couple notes:
Most people now get T4MVC via NuGet
The settings file is now named T4MVC.tt.settings.t4 (not the extra .tt in there)

Related

Added external library can't be seen - NetBeans

I downloaded SocketTest project and made some changes to read data from MS SQL database. Added external library:
But I'm getting java.sql.SQLException: No suitable driver found... when I run the project.
I'm sure there is no mistake in my source code. Because I tested my class on alternate project. It's running smoothly. But I wonder why MS SQL library can't be seen even after I add that.
I also tried to use the newest version of MS SQL library but still no success.
I also tried to analyze project.xml file. But I guess solution is not there.
Please help me to solve this issue.
Thanks in advance.
Solution has been found. build.xml file has been cleared and copied from newly created NetBeans project.

Decompiling an ashx file

Hi has anybody been able to decompile one of these? I've managed to delete mine but found a compiled version in the temp asp.net folder. Theres a lot of work in here and would really like to decompile it to get it back. I've tried verious undelete tool and previous version options but no luck. Many thanks in advance.

OBJECTIVEFLICKR: systemconfiguration.h not found

I'm implementing ObjectiveFlickr into my project and I'm very VERY new to all of this (C language and Xcode included).
I managed to fix a few compile errors and I'm down to this one that just popped up after I added some supporting files to get rid of the other errors:
systemconfiguration/systemconfiguration.h file not found
I have no idea what this means and have done much searching online before posting here, but the only resolution to another poster's issue was to re-install Xcode. I'm sort of doubting that will solve this problem as I've had no issue with Xcode up until this error.
Can anyone spare a tip or two in layman's terms to help me get past this? I've been searching for 24 hours and the only link to the Apple Developer forums isn't working, go figure.
Any help is appreciated. Thanks in advance.
XCode can be very picky about where to look at in terms of header files.
If you got yourself a .framework folder, then click in your project, choose "Build Settings", then look for one called "Header Search Paths". Put the framework's path in there, and change the box on the right from "non-recursive" to "recursive". This should get the build going, and works for almost all third-party libraries.
If, on the other hand, you're trying to compile the library with your app, double-check to see if you didn't forgot to include some file in your XCode project, or if it is not marked for compilation in the project settings (.h files do not count, but maybe the source of your problem are some extra .c or .m that shouldn't be there).
If all else fails, since XCode projects compile into a "flat" directory tree, you could try removing the folder indicator from the #include: from "systemconfiguration/systemconfiguration.h" to "systemconfiguration.h", from the files where the .h is called. This worked in some cases of mine.
There is a framework in iOS called "Systemconfiguration.framework". Add it may help a lot.
Hope this may help you.
I had blanks for some reason in my code around the header decaration
#import < SystemConfiguration/SystemConfiguration.h >
I removed them and it worked.

MSBuild error with linked files

When I use msbuild I get the following error:
CS2001 Source file could not be found.
I have noticed the only files that I get this error for are used as a linked reference to the file, so this could be the issue. Any idea's how to get them to build?
I should add that I am able to build the solution in visual studio without a problem.
Hi everyone! Just want to let anyone who cares know what the problem was. It was a length issue as I stated in my comment. I changed the path to just my c drive and everything built fine. Thanks to everyone who took the time to look at this for me. I appreciate it.
Just want to let anyone who cares know what the problem was. It was a length issue as I stated in my comment. I changed the path to just my c drive and everything built fine. Thanks to everyone who took the time to look at this for me. I appreciate it.

What does the error File type mismatch (~) mean?

After upgrading to a newer version of Xcode, when I build my project I get and error:
File type mismatch (~), OutputModelPrefs.nib.
I have tried Googling and the Apple Developer Forum but I can't find out exactly what the problem is. Can anyone shed any light on what the problem might be?
Xcode stores file type information in foo.xcodeproj/project.pbxproj. Maybe you should open that file in a text editor and see if there's anything conspicuous. Look for lastKnownFileType =. If that doesn't help, maybe recreating the project will.
BTW: is that really a . nib file, not a .xib file?
I'm not sure what exactly this means, I got it in a slightly different place. Mine was complaining about a .pbxindex file with the same error message. In my case, I deleted the .pbxindex and rebuilt. After that the file was regenerated an all was fine. More info on my error here: What is Xcode pbxstrings file for?

Resources