|
Borland Starteam: How to re -check-in a file from a frozen labeled configuration to current configuration with history?
Started by GanYo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Then what you are seeing should be files as of that label configuration (View->....
You should be able to go to that frozen labeled configuration (View->Select Configuration->Labeled Configuration) and pick that label.
|
|
In a few large projects i have been working on lately it seems to become increasingly important to choose one or the other (XML or Annotation). As projects grow, consistency is very important for maintainability.
My question is, what do people prefer....
Started by Abarax on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
XML based) over of Configuration (such as....
However, personally I prefer Configuration (i.e.
Personal taste dictates the answer in most cases.
This is the classic 'Configuration versus Convention' question.
Different pros and cons.
|
|
I personally like the option to configure StructureMap from C# code. From what I understand, one of the advantages of DI, is that we can easily swap in a new concrete instance. But, if the configuration is defined in code, then the concrete instances ...
Started by Amith George on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However, in integration tests, you will likely need a different configuration for the container these days because it's more robust....
This also means that you can defer the decision between configuration in code or config until you need.
|
Ask your Facebook Friends
|
As a professional system administrator, what configuration items do you consider it essential to track to perform proper configuration or change management?
For example, in Windows, do you track registry changes in addition to hardware or software? In...
Started by romandas on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
SN's for all of the above Application level server configuration (ie- web, mail, etc) A contact configuration Note - in response to romandas' comment in the question, I know that's not exactly one item and warranty info) but is more about....
|
|
We've just started to use TeamCity as a continuous integration server. There's a problem we're trying to solve now:
We have a 'release' configuration, it has build versions set like this: 1.0.0.{0} We also have a 'nightly build' configuration, which build...
Started by arconaut on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The most obvious would ....
I can think of a couple of strategies for getting the build number from the release build, none of them elegant .
Here are the instructions.
If you can know it in your build script, you can send it to team city during the build .
|
|
In particular from this web.config:
<configuration> <configSections> <section name="RStrace" type="Microsoft.ReportingServices.Diagnostics.RSTraceSectionHandler,Microsoft.ReportingServices.Diagnostics" /> </configSections> <...
Started by James on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In the above example, you probably need to add a line similar to this:
<section name="runtime" type="your-datatype"/>
It's saying that it's finding the <runtime>... .
You get this error when you are missing an entry in the configSections area .
|
|
Hi all,
I got some codes from other articles for configuring module and layout in zend framework. I tried with in my local. i didn't get different layout for default and admin module. Here is my code for configuring module and layout for zend framework...
Started by Prasanth P on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to use a Controller Plugin to achieve that, because the layout is set based on the request entry, and on the bootstrap the application hasn't been dispatched, so you need to use a controller plugin to work on the preDispatch to switch layouts... .
|
|
Does anyone know how to get the current build configuration $(Configuration) in the C# code?
Answer Snippets (Read the full thread at stackoverflow):
<Target Name="BeforeBuild"> <WriteLinesToFile File="$(OutputPath)\env.config" Lines="$(Configuration)" Overwrite="true">.
You could then read that back in for use in your code .
configuration in it.
|
|
As part of my software package I need to build both a WIN32 AND an x64 version of a DLL. I have a project setup that builds all necessary components and has a custom build step to build an installer. I can't figure out how to have both versions of the...
Started by AlanKley on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could use vcbuild....
In your post-build, copy the dll and run CorFlags.exe /32BIT+ to force the copied dll to run 32bit while the original will run x64 on the x64 OS .
If you are using .net, compile the project for 'Any CPU' .
I don't think it is possible.
|
|
I'd like to reference an external configuration (e.g., *.ini) file that will allow me to set configuration variables for each deployment of my Air application. Unfortunately, I haven't been able to find any information on the best way to approach this...
Started by Huuuze on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you got a lot of configuration options there might be an idea to look.
I the api docs.
|