Jump to content

This is probably a very dumb question....


Sadra..

Recommended Posts

How do I build a .net.dll file from a Visual Basic 2010 Express project? Whenever I press Debug -> Build it gives me a .dll file not a .net.dll.

 

Thanks! :panic:

Link to comment
Share on other sites

LordOfTheBongs

change the extension... so just rename the file ;)

 

u can use post build events in Visual Studio to change the extension to .net (u dont have to do .net.dll, .net is fine) and u can also have it move it to your scripts folder.

 

here is a post build event that will change the extension and install the compiled script to gtaiv (steam version)...

rename "$(TargetFileName)" "$(TargetName).net"move "$(TargetDir)$(TargetName).net" "C:\Program Files (x86)\Steam\steamapps\common\Grand Theft Auto IV\GTAIV\scripts\$(TargetName).net"
Edited by LordOfTheBongs
Link to comment
Share on other sites

go to [ Project > "Name" Properties > Assembly name ] then set to "Name.net" or just rename file to .net.dll...

Link to comment
Share on other sites

 

change the extension... so just rename the file ;)

 

u can use post build events in Visual Studio to change the extension to .net (u dont have to do .net.dll, .net is fine) and u can also have it move it to your scripts folder.

 

here is a post build event that will change the extension and install the compiled script to gtaiv (steam version)...

rename "$(TargetFileName)" "$(TargetName).net"move "$(TargetDir)$(TargetName).net" "C:\Program Files (x86)\Steam\steamapps\common\Grand Theft Auto IV\GTAIV\scripts\$(TargetName).net"

 

 

go to [ Project > "Name" Properties > Assembly name ] then set to "Name.net" or just rename file to .net.dll...

Thanks! :lol:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.