Ctrl K + D in a Visual Studio 2010 Sharepoint project is not working in some files as they contain paths to some resources (masterpageurl/images/js/css classnames) that get generated at runtime.
How do I make VS to "ignore" checking if these resources exist or not?
Code formatting doesn't work in multi-line arrays :
int[] ok={ 1 , 2, 3 };
int[] ko={
1 ,
2,
3
};
use Ctrl K + D
int[] ok = { 1, 2, 3 }; // nice formatting
int[] ko ={
1 ,
2,
3
}; // nothing changed :(
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With