What does Visual J# .NET have to do with my C# Application?

  • Thread starter Thread starter DaBrain
  • Start date Start date
D

DaBrain

I have written an application in C#, when I created a setup project
and tried to install it on another test machine it said:

"This setup requires the Microsoft Visual J# .NET Redistributable
package version 2.xxx"

Is this normal? Or did i screw up my setup project?

Any help would be greatly appreciated

DB
 
I have written an application in C#, when I created a setup project
and tried to install it on another test machine it said:

"This setup requires the Microsoft Visual J# .NET Redistributable
package version 2.xxx"

Is this normal? Or did i screw up my setup project?

Any help would be greatly appreciated

DB


J# has zip/unzip built-in, which no other .net language does (in
vjslib.dll assempbly). Could that be it?
 
J# has zip/unzip built-in, which no other .net language does (in
vjslib.dll assempbly). Could that be it?

Seriously? So apparently J# has a use after all... or its library, at
least. Why didn't Microsoft move that functionality into the main
..NET Framework?
 
Chris Nahr said:
Seriously? So apparently J# has a use after all... or its library, at
least. Why didn't Microsoft move that functionality into the main
.NET Framework?

They're doing so, gradually. .NET 2.0 has basic gzip functionality, but
that's about it.

I guess there wasn't enough time to redesign the Java libraries to fit
in with .NET idioms before 1.0, and after that third party libraries
(notably SharpZipLib) took the pressure off a bit. Personally I hope
that if MS *does* provide a full-blown implementation at some point,
they design it a bit better than the Java version, which works well
enough but isn't terribly nicely designed.
 
J# is gone in the next version of Visual Studio, so I'm sure that this
functionality will be present in the framework then.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C#/VB to C++ converter
Instant Python: C#/VB to Python converter
 
Back
Top