I have been using Visual Studio 2008 for about 2 years now and I just now found out that when you do a rebuild of the dll's it should output to location/bin/release as well as web/bin. My setup is not outputting to the web/bin folder. Is there something I should check as to why it's not doing this.
When I look at the output after a build/rebuild, I get the following line, which makes me think the file should be being placed in the web/bin folder:
Code:
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\sgen.exe /assembly:C:\inetpub\wwwroot\9013\ASPDNSFCore\obj\Release\AspDotNetStorefrontCore.dll /proxytypes /reference:..\Web\bin\ASPDNSFApplication.dll /reference:..\Web\bin\ASPDNSFEncrypt.dll /reference:C:\inetpub\wwwroot\9013\ASPDNSFCommon\bin\Release\AspDotNetStorefrontCommon.dll /reference:..\Web\bin\CMPCDotNet.dll /reference:..\Web\bin\eWorld.UI.dll /reference:..\Web\bin\ExcelWrapper.dll.............
My SLN file has this configuration:
Code:
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "9013", "http://localhost/9013", "{B1611538-8A23-47DE-9998-EBB2583CB10A}"
ProjectSection(WebsiteProperties) = preProject
TargetFramework = "3.5"
Debug.AspNetCompiler.VirtualPath = "/9013"
Debug.AspNetCompiler.PhysicalPath = "Web\"
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\9013\"
Debug.AspNetCompiler.Updateable = "true"
Debug.AspNetCompiler.ForceOverwrite = "true"
Debug.AspNetCompiler.FixedNames = "false"
Debug.AspNetCompiler.Debug = "True"
Release.AspNetCompiler.VirtualPath = "/9013"
Release.AspNetCompiler.PhysicalPath = "Web\"
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\9013\"
Release.AspNetCompiler.Updateable = "true"
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
SlnRelativePath = "Web\"
EndProjectSection
EndProject
WHen I open my dev site, I go to http://localhost/9013
I have never had this working and it seems like it would make development much easier than copying and pasting from dir/bin/release to web/bin every time I rebuild or build. Thanks for any help!