I recently got a new computer and forgot how to create a Release for my asp.net app. I need to generate a Release folder in the Solution Explorer. I’ve changed the build from Debug to Relase. What am I missing?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default, ASP.NET applications place code directly to the
bindirectory (there won’t be Debug or Release directories) when built. So, if you changed the configuration to Release, you should be ready to go.Edit: If you need your assemblies to be output to a Release folder below your bin folder, then open your web app’s project properties, click the Build tab, and change the Output Path setting from bin to bin\Release.