|
|
Browse by Tags
All Tags » Visual Studio (RSS)
-
Today I've tested the Silverlight Validation Framework in the Visual Studio 2010 beta 2.
I downloaded the assemblies, then i added the assembly references on the project, and then i tried to compile the project. But the compiler found the following error message: I found solution to fix this on the Rob’s blog.
To fix this you need to ...
-
I have a class library project where I want to add the assembly to the GAC but only when the configuration is Debug.
The solution is:
if "$(ConfigurationName)" == "Debug" "C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\"gacutil /i "$(TargetPath)" /f
|
|
|