I am currentily working on an old .net web project, and the propieties of the project are missing alot of options. The project has no csproj file, and its info, like framework is written on the sln file.
How do i configure the build output directory location in this kind of project?
I have tried to following the documentation, but the option in simpling not there.
Since the documentation you've followed is for a different type of project like Web Application Project that does have a .csproj
file, it would not apply to a Web Site Project. If the options are not present in the project settings, it's likely because of the project type you're working with.For Web Site Projects (WSP) in .NET, which don't have a .csproj
file.
Here are the steps you could follow to precompile your web site:
For more advanced scenarios, if you need to have a custom build process, you might need to modify the .sln
file or create custom MSBuild scripts that are executed during the build process.