Hi I tried downloading the prism 5 libraries(dlls) by following these steps here
http://msdn.microsoft.com/en-us/library/gg405471(v=pandp.40).aspx
Unfortunately I donot know where to download the libraries like prism.mvvm, pubsubevent and rest. according to the given link if I try to compile other quick starts I run into 407 authentication exception and somebody suggested (here) to manually add assemblies but I donot have assemblies to download.
Please suggest ASAP
Please try to install nuget and add the reference via nuget. its much easier to manage the libraries.
http://www.nuget.org/packages/Prism
Otherwise download from below location,
http://www.microsoft.com/en-us/download/details.aspx?id=42537
Sabaresh
Related
I downloaded the orchard galley server from codeplex repository in this link:
https://galleryserver.codeplex.com
when I want to run ClickToBuild.bat file according of the Readme.txt file for build and run all of the tests in both projects, show this error:
any one can help me?!
thanks a lot
First of all, the project has been discontinued. So you probably will not have support from the author. second, its from 2011.
Looking at your errors, it might seem you are missing assets being referenced. If you look closely to the project tree and read the Error you will see how there are Nuget packages being used. those might need updating for your project to build.
If it is an old nuget version, depending on your VS version might have problems but it salvageable. Just need to make sure all your packages are updated before building.
If you look at UpdateNuGet.bat you will be able to see how it tries to do something in the folder where the compiler tries to find the asset.
Good luck
i want to use FANN (fast artificial neural network) with Xcode
i googled for a way how to get the FANN and install it in Xcode but i did not find a result
please guys does anyone know from where can i download FANN library and use it with Xcode
thanks
Go to http://leenissen.dk. Here you will find the source code you can download from sourceforge.com and install instructions for Cmake on the command line. Just follow the instructions and you will see several static libraries were included. Now all you will have to do is add the library you want to use and the include (.h) files to your Xcode project. From here the example code from the FANN website should work.
Note that when you reference the FANN .h files to your projects files you must use include and not import. I ran into this problem myself.
There was a issue with exporting a code signed application using Xcode. I was able to find a solution after playing around with code signing.
I decided to try manually code signing my app with instructions from http://www.digicert.com/code-signing/mac-os-codesign-tool.htm. This did not work. However the code signing tool pointed me to a problem with libfann.2.2.0.dylib. So I checked if libfann.2.2.0.dylib was code signed and it was not. When I saw this I thought I would try code signing libfann.2.2.0.dylib with my developer ID and re-importing it into my project. This strategy worked and I was able to export a developer ID signed version of my application.
does anybody know of a good tutorial for getting started with NQUnit.NUnit.
I've installed it to my test project via nuget and am unsure what the blank.js and async.js files are all about, should I rename these to match my files under test or do I just add my asyncronous and syncronous tests to the respective files.
ta!
Find the answer in the following link:
NQUnit: JavaScript testing within .NET / CI
I retrieved the latest build from the SVN trunk on Friday and attempted to build following the directions on the getting started wiki.
make dep seems to execute without any problems, but make fails on Samples.mak. It appears there are no rules to make any of the samples when the platform is "arm-apple-darwin9".
If I open the Xcode project at this point, libavcodec and all it's related libraries are missing as well as LibSDL. There's not mention of a requirement to install SDL and ffmpeg beforehand, so not sure what to do there.
Please add some framework is required for run pjsip and also checked config_site.h this file available or not if not found then add this file. some code also may to write in config_site.h file .
Hey I am trying to get http://github.com/gabriel/yajl-objc to work on iOS. It says to "Add the YAJLIOS.framework to your project" but I am not sure how I can get/build YAJLIOS.framework
Thanks!
-Ray
Although this is an old question, I came across the issue today updating a client's old project. The YAJL-objC project requires you to run a makefile command in order to compile the .framework file needed for installation.
To create the framework, checkout the latest from github, and then open Terminal. Change your directory to: yajl-objc\Project-iOS
Next, type the command make and run it. This will execute the compiling for you and create a new framework file here: yajl-objc\Project-iOS\Framework\YAJLiOS.framework
You can then drag that framework into the project you wish to use it in. Good luck!
I should have looked harder, but there is simply a download under the github download link that includes the framework.