C
clintonb
I'm a newbie when it comes to asp.net. All my prior experience is in
making Windows applications in C++.
In the past when I made windows applications, the project or target
file would keep track of the dlls that are required by the project.
This project file would then be checked into source control. So if
another user got the project from source control, they would also know
which dlls are required by the project.
In ASP.net, it appears that there is no file that keeps track of the
dlls that are required by a project. I have a third-party dll that our
website uses. So to make the project compile, I have to add a file
reference to the dll; when I do that, the dll is copied to the bin
folder of my project. But I keep reading that you should not check the
contents of the bin folder into source control. So if another user got
the project from source control, they would have no idea which dlls are
required by the project. I think that sucks (for lack of a better
term). Or am I missing something?
Thanks,
- Clint
making Windows applications in C++.
In the past when I made windows applications, the project or target
file would keep track of the dlls that are required by the project.
This project file would then be checked into source control. So if
another user got the project from source control, they would also know
which dlls are required by the project.
In ASP.net, it appears that there is no file that keeps track of the
dlls that are required by a project. I have a third-party dll that our
website uses. So to make the project compile, I have to add a file
reference to the dll; when I do that, the dll is copied to the bin
folder of my project. But I keep reading that you should not check the
contents of the bin folder into source control. So if another user got
the project from source control, they would have no idea which dlls are
required by the project. I think that sucks (for lack of a better
term). Or am I missing something?
Thanks,
- Clint