vote up 2 vote down star

I have a web.config that occasionally I'll checkout and modify to use a hardcoded password instead of reading it from the registry.

How can I prevent myself from absent-mindedly checking it back in and annoying my co-workers?

I could achieve this in the past with Perforce by creating a separate pending changelist.

edit - I'd rather not make it writable, I was wondering if there's anything in TFS or planned for TFS to support this?

flag

3 Answers

vote up 2 vote down check

Here is a solution:

1) Right click on the file (in Source Control Explorer) and select properties.

2) Then go to security and add your self (make sure you select the user radio button)

3) Then deny yourself checkin rights. (Click the deny checkbox under checkin)

This will stop you from checking in the file. To be able to check it in later just do these steps again, but select the Allow check box.

Note: you may need to get your administrator to give you "Manipulate Security Settings" for that file (done the same as above, but in step 3 select allow under "Manipulate Security Setting".)

link|flag
If I have the Manipulate Security Settings then this could be the best way. Will update tomorrow. thanks – koregan May 28 at 19:59
+1 for an interesting idea. – Chris Lively May 28 at 22:58
vote up 4 vote down

Option 1: You could just make the web.config writeable locally without checking out (this would be helped by setting VS to prompt for checkout).

Option 2: Move the password out of the web.config. Using a configSource attribute to put that configuration into a local, not in TFS, file. Each developer then maintains their own copy.

E.g. in web.config:

<configuration>
  ...
  <connectionStrings configSource="LocalConnectionStrings.config"/>
</configuration>

and in LocalConnectionStrings.config:

<connectionStrings>
  <add name="MyConnectionString"
    connectionString="Data Source=.;Initial Catalog=Test1;Integrated Security=True"
    providerName="System.Data.SqlClient"/>
</connectionStrings>

NB. configSource is implemented by ASP.NET's config runtime and is supported on all configuration elements for ASP.NET (and, thus, not for arbitrary (including custom) configuration elements).

(Also note the <linkedConfiguration> Element provides anothe include mechanism, but is limited to assemblyBinding element.)

link|flag
vote up 0 vote down

How about not doing a checkout of the file and just alter the file localy?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.