Refers to the act of finalizing a software building process for distribution to end-users. Do not use this tag if your question is about indicating that a chunk of memory can be reclaimed. Instead, use [memory-management].
0
votes
0answers
6 views
Release object in Button_Click
Private Sub Button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button12.Click
Dim excel As Microsoft.Office.Interop.Excel.Application
Dim wb As ...
0
votes
0answers
17 views
Jenkins Maven Release suggestions
We use Jenkins to build and deploy our projects and we have not done a release yet. What I was thinking was Jenkins would read the parent POM and build the project modules, on release it would update ...
0
votes
1answer
10 views
Ant Build for Android proj:: how to create the myproject-release.apk (signed) to a folder other than bin?
Ant Build for Android proj:: how to create the myproject-release.apk (signed) to a folder other than bin?
I have over a 100 projects and do not want all the release apks to go to the same folder.
But ...
1
vote
1answer
50 views
Mixed programming failed in release but succeeded in debug
In my compiler a function named "func" will be renamed as _FUNC@* after compiling in fortran. And if a c code use _stdcall calling convention, then the function name, e.g. Ab, will be renamed as
...
1
vote
1answer
23 views
How to create a restricted Git release branch that contains sensitive data?
I have a simple web-store, some php/html/css/js files. The master branch on Bitbucket is actually a development branch, i.e. developers push into it and then I pull the changes to development ...
-1
votes
0answers
9 views
How to use dealloc method in a project without arc
I'm making a project without ARC and I don't understand which properties I need to release in dealloc method. Can you help me?
thanks
0
votes
1answer
32 views
Web.Config Debug/Release : Doesn't work
I have this in my web.config
<add name="AS400" connectionString="Provider=IBMDA400;Data Source=AAAAA;User Id=aaaaaa;Password=aaaaaa;Default Collection=*SYS;" providerName="System.Data.OleDb" ...
1
vote
2answers
24 views
Azure SQL Database naming ambiguity
Our application uses an Azure SQL Database.
Apart from our local dev setup, we have two environments:
Staging (for quality assurance and client testing), and
Production (live)
The Staging ...
1
vote
0answers
30 views
Android : Command line APK Generation - Size Bigger Than Eclipse Export
I have two ways of generating a signed APK file for and android project.
Through Eclipse UI.
Through android command line utility.(android update project --target 1 --path .; ant release)
With ...
-1
votes
1answer
18 views
Building release Android APK with vs-android
I have a large amount of C++ native code and a small wrapping java code for Android application. I was able to combine them into an Android app using vs-android and build it directly from Visual ...
2
votes
2answers
48 views
Switch between Release and Debug in code
I published my application and I want to add extra "Admin" functionality to it.
I see a lot of debug information, when I run my application in Debug mode, all of this is removed in the Release mode, ...
0
votes
1answer
19 views
Difference between debugging the release and running the release
When I generate the Release version of my app from Visual Studio (F5 Hotkey), everything is fine. But when I run the executable (exe file in the Release folder), I have a bug. That's so strange.
What ...
1
vote
1answer
25 views
How to make a Maven release faster?
Our build system is pretty stable and consists of Maven with Nexus and Jenkins for CI. As long as we're developing (with SNAPSHOTs), everything is fine, but the release always takes too long.
That's ...
0
votes
0answers
31 views
Random Crash in Release Mode with stereoBM (C++/OpenCV)
I have some problems with my programs using C++/Qt/OpenCV(2.4.5) and i couldn't found any solution.
The source of my probleme comes from the stereoBM function. It works as expected in debug mode but ...
0
votes
1answer
47 views
When to release AudioRecord object?
I am using the following code. It works fine and shows the frequency. But everytime before starting the app i need to reinstall it so that it works correctly. Could it be that the object is not ...