815 questions
0
votes
1
answer
386
views
Why does the Visual Studio setup project always build as x86 [duplicate]
I have Visual Studio Professional 2019 and 2022. This happens in both.
I create a C# library project in .Net 4.8 framework. Nothing added, just the project with its default "Class1". I ...
0
votes
0
answers
60
views
Access denied to MS Access File in C:ProgramFiles(86) folder
I am working on a VB.Net 2022 Windows Application and I am keeping a .mdb access database file in the bin folder and I created the setup of the application. After installation, the access database is ...
0
votes
0
answers
264
views
Github workflow failing on deployment to k8s
We have a k8s cluster (private cluster) on which we are hosting some apis. Since yesterday the workflow deployment from Github to the k8s stopped with the error:
error: You must be logged in to the ...
1
vote
2
answers
625
views
How do I debug and Step through a Visual Studio Setup project?
OS: Windows 10 Enterprise N
Dev Environment: VS2022 (64-Bit) Professional (7.5)
Application: VSTO Add-In (Outlook 32-Bit)
The custom action I have closes Outlook during Install. That's working. ...
3
votes
4
answers
2k
views
How to deploy a build react app in your existing Laravel site as subdomain?
npm run build
I build a simple react app; this is what I see in build/ folder
jdoe@AIR ~/Sites/react/alphabets/build main ± tree
.
├── asset-manifest.json
├── favicon.png
├── index.html
└── ...
1
vote
0
answers
959
views
why my setup in mysql in vs code is not working?
So basically, I'm following this tutorial.
LINK.
wherein I setup the MySQL Localhost first in the Vscode after that I will to the cmd part
and do this mysql -u root -p
After that I have to input my ...
1
vote
1
answer
45
views
Travis unable to start mongodb instance
I am using Travis CI/CD in my repository. When my build starts on Travis. Getting below error:
sudo systemctl start mongodb
Failed to start mongodb.service: Unit mongodb.service not found.
Here is my ...
-1
votes
1
answer
376
views
How to create C# desktop application setup file along with database
I created a C# application for my client with a database so I created a setup file which runs fine on my PC, but on my client's PC, it shows this error error msg
I need to submit it to my client but ...
-1
votes
1
answer
203
views
How to run Bin/Setup on spree commerce setup
I am setting up spree. Got far as this and dont know what to do thereafter. "Run bin/setup in said directory"
What must I type in the terminal to setup?
0
votes
1
answer
3k
views
SetupComplete.cmd is not running
I'm using an unattended installation of Windows 10 21H2 LTSC using an "answer file" (unattend.xml) on a surface pro 7 plus device.
I have placed SetupComplete.cmd at: %windir%\setup\scripts ...
0
votes
0
answers
181
views
How can I get Visual Studio Deployment Project Properties values
How can I dynamically get TargetPlatform in deployment project properties or can i write targetPlatform to regedit. Then i will write this target platform on windows form screen
3
votes
0
answers
186
views
.NET 5 Projects with Packaging Projects fail to build after VS2019 Upgrade to version 16.10
Following issue occurs only on .NET Desktop Projects that also include Windows Application Packaging Project.
After my VS2019 was updated to version 16.10, all my .NET 5 projects that also include a ...
1
vote
1
answer
151
views
create setup with pre-install vc++2015 runtime like requirement
I am creating a setup and check the pre-requirement option of Visual Studio 2019 - Setup Project. However, I could not find a VC++2015 pre-requirement.
But I am using CEFSHARP and it is a requirement;...
0
votes
0
answers
38
views
Winforms Build Date Not Showing in Installed App
OK try to follow this: I am using a Pre-Build event command line like so...
echo %date% %time:~0,5% > "$(ProjectDir)\Resources\BuildDate.txt"
This gives me a resource named BuildDate ...
2
votes
3
answers
351
views
DLL file cannot be located when application setup is generated using the in-built Publish feature of Visual Studio
I have successfully built an application in C# to interface a highspeed measurement sensor. The application uses a third party DLL file used to interface the external hardware, supplied by the ...
6
votes
2
answers
11k
views
How to create an Upgrade installer with the Visual Studio Installer Projects extension
I asked this on the deployment projects QNA
I'm using the Microsoft Visual Studio Installer Projects extension to build a new installer for an update to a 10 year old project, but I cannot seem to ...
0
votes
0
answers
411
views
ClickOnce Installation from URL still tries to download vsto file locally
I try to deploy my VSTO AddIn using ClickOnce with the following setup. When I start setup the installer still tries to find the vsto file in the users download folder instead of downloading it from ...
0
votes
0
answers
823
views
Visual Studio Installer project always installing .NET Framework 4.8 prerequisite even if already installed
I'm trying to deploy my windows forms application via Visual Studio Installer extension.
As shown below, I'm setting .NET Framework 4.8 as a one-and-only prerequisite.
The problem is, when I test the ...
0
votes
1
answer
359
views
Deploy a local Add-ins for Outlook with signing signature or dll
Edit:
With the reply from Dmitry Streblechenko, looks like my only option is to created a dll that I can manually installed. May I know how can I do that?
I converted my Outlook vba macro to a ...
0
votes
1
answer
1k
views
Is there any way to search and copy all the DLL dependencies?
As we know, when trying to run a program with some of its dependent DLL missing, the system would complain about "missing dll" error. The approach I'm using to avoid this is to pack all those ...
0
votes
1
answer
1k
views
How deploy UWP app like we did WPF from windows server?
I am new in UWP deployment need the right way to do this
I want to deploy my UWP to my users through group policy like we did WPF app?
0
votes
0
answers
106
views
How do I manually set up libraries for a python cgi script?
I'm running in a shared hosting environment where I don't have admin. I want to run a Python script that uses modules from mpmath and another library, which have not been installed.
I've placed the ...
1
vote
1
answer
229
views
Pre-requisites not installed using WIX bootstrapper in windows 10 OS
I have created WIX setup for my application. I am bootstapping the prerequisites using WIX bootstapper. One of the prerequiste is to install SQL CE on the machine.
The package install all the ...
1
vote
0
answers
82
views
Create additional Target Parameter in deployed Application
I use Visual Studio 2019 to create an application and I deploy it using ClickOnce deployment. While installing, the app creates shortcuts on the user's PC:
In the Start Menu
On the Desktop
In the ...
6
votes
2
answers
5k
views
How to package .NET Core 3 in Visual Studio Installer Project
So, I want to create an installer for my .NET Core 3 based C# project. I installed the Installer Projects extension for Visual Studio 2019 and created a new Installer project within my solution. After ...