Sadra.. Posted March 18, 2014 Share Posted March 18, 2014 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! Link to comment Share on other sites More sharing options...
LordOfTheBongs Posted March 18, 2014 Share Posted March 18, 2014 (edited) 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 March 18, 2014 by LordOfTheBongs Link to comment Share on other sites More sharing options...
AgentWD40 Posted March 18, 2014 Share Posted March 18, 2014 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 More sharing options...
Sadra.. Posted March 18, 2014 Author Share Posted March 18, 2014  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! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now