Sharper in VS 2008
hello guys,
my question about Sharper ingeneral
our team working on VS.net 2008 IN some company projects , within this VS we change Assimbly and Framework version to 2.0 ,so we are working
with VS.net 2008 and our Target Framework is 2.0 we install Sharper and start working on it, but the problem is that Sharper give us suggestion about Property
for example we have this property
Private string _username;
Public string UserName
{
get { return _username ; }
set { _username = value ; }
}
Sharper give us suggestions to change all of this to be like this
Public string UserName
{
get { ; }
set { ; }
}
so i think this shortcut came with FW 3.0 or later , not with 2.0 , so in our case we need from Sharper to give us solutions and best practise in our code that compatible just with FW 2.0
so can we do it in Sharper options ,
Thanks and regards
--------------------------------
Moayad Al-Saleh
Please sign in to leave a comment.
Hello moayad al-saleh,
Please take a look at this KB entry: http://devnet.jetbrains.net/docs/DOC-271.
Thank you!
Andrey Serebryansky
Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Thanks Andrey