Hi, i've a c# wincontrol that depends on a bunch of c++ unmanaged dlls.
dotnetctrl.dll
+
+--myliba.dll
+
+--mylibb.dll
Is there a way to include these mylib[a|b].dll when deploying the dotnetctrl.dll?
i.e. When in a project I add a reference to dotnetctrl, is there a way to make the mylib dlls available in the right path just li...
I have created an Asp.net MVC2 application in VS2008. When i am running the website on internal server its working fine. But when i created a virtual directory for the website on local IIS6, its giving me error
Directory Listing Denied
This Virtual Directory does not allow contents to be listed.
How can i deploy the asp.net MVC site on...
I have a config file that needs changed on a per-server basis, so that once a server has our software installed on it, the config file for a client installer is set up to match that server's particular settings, and then copied to a public folder on the web for deployment.
Since I'm changing the config file, I also have to rebuild the ...
I would like to know how to deploy or what are the steps that are involved to deploy a classic asp website in IIS 6/7
Can we create an installer for the existing project?
...
I've a custom Action on Deployment project of .NET Applicaiton, which contains custom dialogbox to enter certain parameters, on invalid parameters I've shown MessageBox.Show - but its being hide by installer window, I tried windows forms too with Activate, TopMost, Focus,bring2front, etc serveral options but it comes by default behind th...
When deploying a Java application, can I assume that every computer has java, and so is able to run my application? I've just created a java app, which works on my computer, but my boss (who generally uses .NET) claims it doesn't work at all. Should I assume that this will happen often, or will most consumers have java?
...
I've seen many people use git (or SVN) for deploying their web app projects, be they PHP, Python or whatever. Essentially, you use pull the code from the stable branch to your local server and possible run a few migration updates. Easy.
But I wondered if anyone uses git for deploying to cloud server / clusters. RightScale suggest that w...
I have a solution containing about 20 WCF endpoints where each endpoint shares one of two configurations for bindings and behaviors. The two different configuration I have is so I can either do a custom username/password authentication or do a certificate authentication. All of my endpoints specify a specific base address. If I start ...
When we work on an SSRS report on our local laptops, we have a data source we use. However, when we put the report on our SSRS server, we'd like to be able to specify a different data source.
So, when we upload our report to the SSRS server, we specify a different data source. But, when we run the report, it gives us an error saying it...
Ok.. I have looked through this site and just can't seem to find the answer I am looking for.
We have a multi server setup for our web sites, typically (DEV/QA/PRODUCTION). Our sites are .net which require some sort of build before being deployed. We are using SVN for source control and are looking for a tool/website/something that will...
I've recently written my first grails application.
The application is a "product" in that I'd like to build a single version of the application that can be deployed to multiple customers as a war file.
I need to be able to configure each application differently.
What is the "best practice" for deploying a grails application as a prod...
I am trying to reference LINQPad.exe, a .NET executable, so that my code can make use of its wonderful .Dump() extension method. Adding a reference to the exe allows me to use the following code on my dev machine, but it breaks ClickOnce ("Reference in the manifest does not match the identity of the downloaded assembly LINQPad.exe.").
p...
I wrote this really simple game in SDL using C++ and now i want to show some of my friends who are on windows. I wrote my program in ubuntu 9.10 using code blocks. I want to take my source code and make a windows installer so they can install it and play. How can i go about doing this?
...
Hi All,
I created the Reports in SSRS and i deployed in my local Report Server.
Now one of my client wants that solution in their server(Development) in a Package.
But i have no idea how to create MSI package for SSRS....
So please help me, i want to deliver that Package
please
Thanks in Advance
Vinay K
...
I have a .exe assembly and a set of referenced assemblies that I would like to be able to deploy updated code for. I don't need to actually change the running code, but the next time I launch the executable I would want it to pick up the updated code. Currently when I attempt to copy over the running file I get an error about the .exe be...
I'm trying to automate publishing a click once application.
I am using VS2005.
I have been able to deploy properly from VS, but not from the command line.
Here is the line I'm using:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\msbuild.exe
/p:Configuration=Release
/t:Publish
/p:PublishUrl=C:\source\deploy\
/p:PublishDir=c:\sour...
Hi
I have an application with some images in it. Recently I added a new one in and it displays fine on the simulator.
When I create a distribution build and do an ad-hoc install it works fine, but for reasons unknown the image doesn't appear.
I have tried
"touching" the directory it is in
Re adding it
Cleaning the solution aroun...
I have WPF application, Which works fine on my PC. As this application is going to be used by clients i was trying to run that in few other computers.
But when i try to run it, it opens window for brief moment and closes itself.
Looks like .net is just refusing to start the application.
There is nothing on event log. Also my applica...
I have a web-app that requires two settings:
A JDBC datasource
A string token
I desperately want to be able to deploy one .war to various different containers (jetty,tomcat,gf3 minimum) and configure these settings at application level within the container.
My code does this:
InitialContext ctx = new InitialContext();
Context envCt...
I'm not entirely sure if the StackTrace does not work correctly when deploying in release mode, however, we want to log all the exceptions so we can make bug tracking easier when deploying, and of course, deploying in debug mode is not an option. The info we need from the StackTrace class is the file name, the method, and the line number...