Publish website with all .dll and .compiled file - dll

I have a website project in VS2013.
Now How can I publish this website to file system, and publish all .dll and .compiled file (as photo : all page code publish to .compiled file)
Thank for support.

Related

obfuscating SPA (Single-Page-Application) binaries and .dll files to secure startup.cs and context.cs classes

I have developed a SPA (single-page-application) using react and Asp.net core and published to a folder as a self-contained App which will be deployed on the client desktop computer and work as desktop app.
I want to obfuscate the binaries and .dll files of published folder using neo-confuserex so that the user may not decompile the app to see startup.cs,context.cs and controller.cs classes.
the screenshot of the folder structure of the published folder is attached here.
here is second
as there is a long list of files so the last screenshot is here
my question is to identify the files which should be obfuscated and leave the extra remaining files which are necessary to run the app on desktop computer.

What files need to be deployed with a VS2019 app with a report viewer control

I have a VS 2019 app that uses a report viewer control. The control was added to the ToolBox by adding the file "[ProjectName]\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1484.0\lib\net40\Microsoft.ReportViewer.WinForms.dll. There are a bunch of other files in this \package folder.
Which of these folders and/or files need to be deployed with this app. I'm using InnoSetup to create the deployment package? Should I deploy all files for the references in this project?
Adding the report viewer control to VS 2019 involves installing the NuGet package "Microsoft.ReportingServices.ReportViewerControl.Winforms". This added a subfolder to the project folder entitled "packages". All .dll files included in that folder need to be installed on the users' PC's.

web deploy does not include all .css files in the deployment package

my web application uses a .css file. However when I use web deploy to publish the application to a web deploy package, the style sheet is omitted from the .zip file.

How to deploy .bin files from Visual Studio project?

I'm making windows application in VB.NET and I added some files in my project in solution explorer and I set on every file I added
"Copy to Output Directory: Copy Always"
but it deploy every file except .bin files after publishing.
It work in debugging mode, but not when I publish it. any help please, how to deploy .bin files?
Thanks.
What is the Build Action property of those files set to? If it is Content then I believe that they should be included in the deployment automatically. If not, open the Publish page of the project properties and click the Application Files button. There you can control what files are included in the ClickOnce deployment.

changing "application files" folder in vb.net

i understand that some files get published to this folder in my application. i want all the files to be in the same folder. how do i do this?
meaning that i want the setup.exe and everything to be in one folder after i have published the application. i dont want to have an application files folder at all
You are getting hung up on what the IDE looks like when you create a Setup project. There is no "application files" folder, the Setup project creates a setup.exe file when it is built. That's the only file that you need to distribute to your client.
The "application files" node on the screen is simply a container in which you can put files while you create your Setup project. Those files will be available in the application's install directory after your client runs the setup.exe installer on her machine.
Actually run the setup.exe on your machine to see what it will look like on your client's machine.