Link to home
Start Free TrialLog in
Avatar of deepakyadav
deepakyadav

asked on

how to run an .net project

i have created an .net project in 2003 edition of .net and
if i run or open this project in 2002 .net edtion theb it says "Inavlid .net file"  
so how can i run or open this project in 2002 .net edtion plz tell me

Avatar of Gaxx
Gaxx

Hmmm.. never had to do this but it should be possible to open the .vbproj (or .csproj or whatever) and change the line that reads:

  SchemaVersion = "1.1"

to

  SchemaVersion = "1.0"

I think.... ;)

Lemme know if it works or not as I may need to do this myself some day ;)  It won't work if your code uses any of the 1.1 framework features though...
ASKER CERTIFIED SOLUTION
Avatar of farsight
farsight

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial