I am working on .net 1.1 legacy system and need to change the name of outputted dll.
When I go to change the "output file" under project property it's greyed out and won't let me change it.
How do I do this?
I am working on .net 1.1 legacy system and need to change the name of outputted dll.
When I go to change the "output file" under project property it's greyed out and won't let me change it.
How do I do this?
In Visual Studio 2017, change the "Target Name" under Project Properties-> Configuration Properties-> General.
In a C++ dll project using VS 2019 the option can be found in Project > Properties > Linker > General > Output File. Found answer in this question.
I had a similar issue when I refactored a project and my DB project reference kept reverting back to the original naming scheme and outputting the reference in my bin folder. The solution for me was to open the DB projects properties => click on the SQLCLR tab => and then update both the Assembly Name and Default Namespace. Hope this helps.