User Kieran Benton - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T12:52:47Zhttp://stackoverflow.com/feeds/user/5777http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/179254/reloading-configuration-without-restarting-application-using-configurationmanager1Reloading configuration without restarting application using ConfigurationManager.RefreshSectionKieran Benton2008-10-07T16:16:04Z2009-11-25T01:00:01Z
<p>Has anyone got this working in a web application? </p>
<p>No matter what I do it seems that my appSettings section (redirected from web.config using appSettings file=".\Site\site.config") does not get reloaded. </p>
<p>Am I doomed to the case of having to just restart the application? I was hoping this method would lead me to a more performant solution.</p>
<p>Update:</p>
<p>By 'reloading' I mean refreshing ConfigurationManager.AppSettings without having to completely restart my ASP.NET application and having to incur the usual startup latency.</p>
http://stackoverflow.com/questions/1747626/asp-net-httpmodule-performance/1747860#17478600Answer by Kieran Benton for ASP.NET: HttpModule performanceKieran Benton2009-11-17T10:17:11Z2009-11-17T10:17:11Z<p>I've a few of these that hook into the Response.Filter stream pipeline to provide resource file integration, JS/CSS packing and rewriting of static files to absolute paths.</p>
<p>As long as you test your regexes in RegexBuddy for speed over a few million iterations, ensure you use RegexOptions.Compiled, and remember that often the quickest and most efficient technique is to use a regex to broadly identify matches and then use C# to hone that to exactly what you need.</p>
<p>Make sure you're also caching and configuration that you rely upon.</p>
<p>We've had a lot of success with this.</p>
http://stackoverflow.com/questions/1679857/how-can-i-debug-preferably-in-an-ide-an-msbuild-script1How can I debug (preferably in an IDE) an MSBuild script?Kieran Benton2009-11-05T11:11:33Z2009-11-13T11:31:54Z
<p>Hi,</p>
<p>We use MSBuild quite extensively as part of our continuous integration process, and whilst it is incredibly powerful and we can do practically all of our build, test and deployment within it (utilising some custom tasks) - we've found that debugging it using tags is a pain and cannot always provide us with enough information.</p>
<p>I've found: <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2007/12/03/msbuild-debuggers.aspx" rel="nofollow">http://www.wintellect.com/CS/blogs/jrobbins/archive/2007/12/03/msbuild-debuggers.aspx</a>, but unfortunately the project seems to have disappeared from Codeplex.</p>
<p>Does anyone have any idea if there is something similar to this available or if there is another way/technique that can be used?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1715470/building-an-installer-that-can-install-the-same-package-multiple-times-to-differ3Building an installer that can install the same package multiple times (to different folders) with multiple configurationsKieran Benton2009-11-11T14:23:24Z2009-11-11T21:33:16Z
<p>Hi,</p>
<p>We have a bit of an odd setup, which comes from the fact we provide hosted installations of our software to our clients, and each client may be on a different version of our software and be running with a seperate database. </p>
<p>We also allow clients (under a different licensing scheme) to install our software locally at their premises on their own machines.</p>
<p>This makes building a installation package MSI (we're using WIX) for one of our apps (a .NET windows service) fairly difficult, and I have one major stumbling block.</p>
<p>I can't figure out how to have one installer for a version (MyApp V2.0.0) that can be installed MULTIPLE times on one machine with the following properties:</p>
<ol>
<li><p>Name of app in add/remove programs: "MyApp (CUSTOMERNAME)", where CUSTOMERNAME is defined during the setup as part of a GUI.</p></li>
<li><p>Each instance of the application installed into \Program Files\Company\MyApp (CUSTOMERNAME).</p></li>
<li><p>A service created/updated called "MyApp (CUSTOMERNAME)".</p></li>
<li><p>Allow individual installations to be upgraded without affecting other installations AT ALL.</p></li>
</ol>
<p>Basically affecting the installation of one instance should not affect any others in any way.</p>
<p>Does anyone have any idea how this can be achieved or if there are any other available techniques?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1702196/how-often-is-the-application-store-refreshed-in-an-asp-net-website/1702291#17022911Answer by Kieran Benton for How often is the Application store refreshed in an ASP.Net Website?Kieran Benton2009-11-09T16:50:54Z2009-11-09T17:01:30Z<p>Web.config causes the application to restart, and it is that action which is clearing out HttpContext.Current.Application. </p>
<p>Anything that restarts the application, touching web.config, manually doing it in IIS, having the application pool recycled by IIS will "clear" that data.</p>
<p>With that in mind it is still the most pernament in-memory store available, so if you need something more pernament you will have to persist your data to disk or to a database somewhere.</p>
<p>You probably don't really need to use it though (we rarely do), usually the best tactic is to use the application cache and rebuild resources as required. As long as your server isnt under high memory stress then cache will not be dropped either (unelss an expiry is set).</p>
http://stackoverflow.com/questions/164979/uk-postcode-regex-comprehensive1UK Postcode Regex (Comprehensive)Kieran Benton2008-10-02T23:05:03Z2009-10-21T11:44:33Z
<p>I'm after a regex that will validate a full complex UK postcode only within an input string. All of the uncommon postcode forms must be covered as well as the usual. For instance:</p>
<p><strong>Matches</strong></p>
<ul>
<li>CW3 9SS</li>
<li>SE5 0EG</li>
<li>SE50EG</li>
<li>se5 0eg</li>
<li>WC2H 7LT</li>
</ul>
<p><strong>No Match</strong></p>
<ul>
<li>aWC2H 7LT</li>
<li>WC2H 7LTa</li>
<li>WC2H</li>
</ul>
<p>Are there any official or even semi-official regexes in use for this kind of thing? Any other advice as to formatting and storing these in a database?</p>
http://stackoverflow.com/questions/598129/dependency-graph-of-visual-studio-projects/1553936#15539361Answer by Kieran Benton for Dependency graph of Visual Studio projectsKieran Benton2009-10-12T11:00:37Z2009-10-12T11:00:37Z<p>If you simply want a dependency graph I've found this is one of the cleanest ways to get one:</p>
<p><a href="http://www.drewnoakes.com/code/dependancyanalyser/" rel="nofollow">Dependency Analyser</a></p>
http://stackoverflow.com/questions/1078417/performance-problem-with-large-number-of-colormaps-with-imageattributes-setremapt0Performance problem with large number of ColorMaps with ImageAttributes.SetRemapTableKieran Benton2009-07-03T08:42:53Z2009-10-08T15:00:03Z
<p>I'm dynamically mapping colours in an image that has alpha transparency in it to another (smaller set) of colours.</p>
<p>I've got code like:</p>
<pre><code>var mappings = new List<ColorMap>();
foreach(var color in mapcolours)
{
// Add mappings for all alpha values of the mask colour
for(int i = 0; i < 256; i++)
{
var cm = new ColorMap();
cm.OldColor = Color.FromArgb(i, mapcolour);
cm.NewColor = Color.FromArgb(i, GetDestinationColour(mapcolour));
mappings.Add(cm);
}
}
var ia = new ImageAttributes();
ia.SetRemapTable(mappings.ToArray(), ColorAdjustType.Bitmap);
g.DrawImage(image_mask, destrect, 0, 0, image_mask.Width, image_mask.Height, GraphicsUnit.Pixel, ia);
</code></pre>
<p>But unfortunately (and I think its because I'm mapping all 255 alpha values of each colour) this eats up a LOT of CPU which has shown up during some profiling.</p>
<p>Is there a more efficient way to accomplish this? I can't stop mapping all 255 alpha values as otherwise the result looks terrible.</p>
http://stackoverflow.com/questions/1453661/are-binaryformatter-serialize-and-deserialize-thread-safe2Are BinaryFormatter Serialize and Deserialize thread safe?Kieran Benton2009-09-21T09:43:38Z2009-09-21T13:47:29Z
<p>Referencing <a href="http://stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-an-object-in-net-c-specifically/129395#129395">this</a> answer to a question.</p>
<p>Can this be rewritten as:</p>
<pre><code> private static BinaryFormatter formatter = new BinaryFormatter();
public static T DeepClone<T>(this T a)
{
using(MemoryStream stream = new MemoryStream())
{
formatter.Serialize(stream, a);
stream.Position = 0;
return (T)formatter.Deserialize(stream);
}
}
</code></pre>
<p>So avoiding constructing (and GC'ing) a new BinaryFormatter for each call? </p>
<p>This code path is getting hit very frequently as it involves our caching layer and I would like to make it as lightweight as possible.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1087034/hiding-flash-component-scrollbars-using-object-param-syntax0Hiding flash component scrollbars using object/param syntaxKieran Benton2009-07-06T13:41:15Z2009-09-15T17:00:00Z
<p>Hi all,
I'm not sure if this is possible (complete non-flash developer speaking), but we have a 3rd party component that we want to only show a certain topleft hand portion of.</p>
<p>I've tried limiting the size of the HTML object container as:</p>
<pre><code><object type="application/x-shockwave-flash" width="600" height="415" data="<url>">
<param name="movie" value="<url>" />
<param name="wmode" value="transparent" />
<param name="allowscriptaccess" value="always" />
<param name="quality" value="high" />
<param name="flashvars" value="<vars>" />
</object>
</code></pre>
<p>So limiting it to 600x415, but this causes horizontal and vertical scrollbars as part of the flash component to appear. Is there any standard way to override this behaviour?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1409936/referencing-page-title-after-it-has-been-set-as-part-of-a-aspcontentplaceholder0Referencing Page.Title after it has been set as part of a asp:contentplaceholderKieran Benton2009-09-11T09:25:42Z2009-09-11T12:53:12Z
<p>Hi,</p>
<p>I've got a master page setup with a contentplaceholder control inside the title tag as so:</p>
<pre><code><head id="head1" runat="server">
<style type="text/css">
body { font-family: Tahoma; font-size: 9pt; }
</style>
<title><asp:contentplaceholder id="title" runat="server" /></title>
</head>
</code></pre>
<p>That contentplaceholder is implemented inside a page that uses that masterpage as so:</p>
<pre><code><asp:content runat="server" contentplaceholderid="title">
Welcome: <%= this.BasketID %>
</asp:content>
</code></pre>
<p>I'm trying to then get a copy of the substituted title inside the masterpage body (also tried inside the page - and this doesnt work either) like:</p>
<pre><code><p>
<strong>Subject:</strong> <%# Page.Title %>
</p>
</code></pre>
<p>In all cases <code>Page.Title</code> and <code>Page.Header.Title</code> are <code>""</code> (I've tried both databinding and using the <code><%= %></code> syntax to no avail.</p>
<p>Does anyone know what is going on here and how I can overcome this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1405204/how-can-i-get-the-relative-url-of-a-page-from-an-instance-of-the-page-object-itse0How can I get the relative URL of a page from an instance of the page object itselfKieran Benton2009-09-10T13:08:56Z2009-09-10T13:37:46Z
<p>Given an instance of a class that derives from System.Web.Page (ie. a normal page instance) how can I get the relative URL required to request that page (without a Request object).</p>
<p>To clarify, I'm instanciating a Page derived class outside of the normal page request pipeline.</p>
<p>e.g.</p>
<pre><code>var p = new MyPage();
// p.Request is not going to be valid
</code></pre>
<p>From that how can I get the appropriate URL that would normally be used to request the page?</p>
http://stackoverflow.com/questions/1390238/sql-server-cross-row-compression1SQL Server cross-row compressionKieran Benton2009-09-07T17:11:15Z2009-09-07T18:25:27Z
<p>Hi,</p>
<p>I'm having to return ~70,000 rows of 4 columns of INTs in a specific order and can only use very shallow caching as the data involved is highly volatile and has to be up to date. One property of the data is that it is often highly repetitive when it is in order.</p>
<p>I've started to look at various methods of reducing the row count in order to reduce network bandwidth and client side processing time/resources, but have not managed to find any kind of technique in T-SQL where I can 'compress' repetative rows down into a single row and a 'count' column. e.g.</p>
<pre><code>prop1 prop2 prop3 prop4
--------------------------------
0 0 1 53
0 0 2 55
1 1 1 8
1 1 1 8
1 1 1 8
1 1 1 8
0 0 2 55
0 0 2 55
0 0 1 53
</code></pre>
<p>Into:</p>
<pre><code>prop1 prop2 prop3 prop4 count
-----------------------------------------
0 0 1 53 1
0 0 2 55 1
1 1 1 8 4
0 0 2 55 2
0 0 1 53 1
</code></pre>
<p>I'd estimate that if this was possible, in many cases what would be a 70,000 row result set would be down to a few thousand at most.</p>
<p>Am I barking up the wrong tree here (is there implicit compression as part of the SQL Server protocol)? </p>
<p>Is there a way to do this (SQL Server 2005)?</p>
<p>Is there a reason I shouldn't do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/258355/reflecting-local-variables0Reflecting local variablesKieran Benton2008-11-03T11:13:00Z2009-08-27T12:04:37Z
<p>I'm trying to find a way to automate some exception logging code to add to the stack information already available.</p>
<p>Is there any way to use reflection to retrieve the values of all variables on the stack (locals and parameters) - I sincerely doubt the names of the variables are available, but in many cases it would be useful to see the values.</p>
http://stackoverflow.com/questions/847806/asp-net-repeater-alternate-row-highlighting-without-full-blown-alternatingitemte4ASP.NET repeater alternate row highlighting without full blown <alternatingitemtemplate/>Kieran Benton2009-05-11T12:08:38Z2009-08-25T16:44:53Z
<p>I'm trying to accomplish simply adding a css class to a div on alternate rows in my <code><itemtemplate/></code> without going to the overhead of including a full blown <code><alternatingitemtemplate/></code> which will force me to keep a lot of markup in sync in the future.</p>
<p>I've seen a solution such as <a href="http://blog.net-tutorials.com/2009/04/02/how-to-alternate-row-color-with-the-aspnet-repeater-control/" rel="nofollow">http://blog.net-tutorials.com/2009/04/02/how-to-alternate-row-color-with-the-aspnet-repeater-control/</a> which I'm tempted to use but this still doesn't "smell" right to me.</p>
<p>Has anyone else got a more maintainable and straightforward solution? Ideally I'd like to be able to do something like:</p>
<pre><code><asp:repeater id="repeaterOptions" runat="server">
<headertemplate>
<div class="divtable">
<h2>Other Options</h2>
</headertemplate>
<itemtemplate>
<div class="item <%# IsAlternatingRow ? "dark" : "light" %>">
</code></pre>
<p>But I can't figure out how to implement <code>IsAlternatingRow</code> - even with extension methods.</p>
http://stackoverflow.com/questions/90913/reliable-and-performant-cheap-ish-hosting-for-asp-net-3-5-and-mysql2Reliable and performant cheap (ish) hosting for ASP.NET 3.5 and mysqlKieran Benton2008-09-18T08:22:49Z2009-08-06T06:19:10Z
<p>I'm looking for someone reasonably cheap but better than the majority of budget hosts out there. I'm currently with brinkster.net and I've become increasingly annoyed at the their immense unreliability and low available resources.</p>
<p>Fasthosts business plan is close, but has no mysql, only has ASP.NET 2.0 and is maybe slightly more expensive than I was hoping for.</p>
http://stackoverflow.com/questions/1221798/one-exception-handler-for-all-exceptions-of-a-class/1221828#12218281Answer by Kieran Benton for One Exception handler for all exceptions of a CLASSKieran Benton2009-08-03T11:31:06Z2009-08-03T11:31:06Z<p>This sounds like a problem with your design. Can you elaborate on exactly what exceptions you are trying to catch and why and we can try and help with that.</p>
http://stackoverflow.com/questions/1221270/how-do-i-use-performancecountertype-averagetimer32/1221598#12215981Answer by Kieran Benton for How do I use PerformanceCounterType AverageTimer32?Kieran Benton2009-08-03T10:23:45Z2009-08-03T10:23:45Z<p>First off, attaching to performance counters is quite expensive, so you should try and keep global instances live to them instead of opening and closing them each time.</p>
<p>You seem to have the right idea, thats pretty much what we do in our performance monitoring code. However we do not do .NextValue immediately prior to updating these - so I'd try stopping doing that initially.</p>
<p>Are you also sure that Environment.TickCount - init_call_time isnt such a small period of time that it evaluates to 0? Environment.TickCount doesnt have great resolution, the System.Diagnostics.Stopwatch class has much better accuracy.</p>
http://stackoverflow.com/questions/1212652/ms09-035-vulnerability-impact-on-application-development2MS09-035 Vulnerability & Impact On Application DevelopmentKieran Benton2009-07-31T13:49:15Z2009-07-31T14:36:09Z
<p>Hi all,
Does anyone know if these patches <a href="http://www.microsoft.com/technet/security/bulletin/ms09-035.mspx" rel="nofollow">http://www.microsoft.com/technet/security/bulletin/ms09-035.mspx</a> and <a href="http://www.microsoft.com/technet/security/bulletin/ms09-034.mspx" rel="nofollow">http://www.microsoft.com/technet/security/bulletin/ms09-034.mspx</a> will apply to software built using one of the 'pure' (ie. not managed C++) .NET languages? </p>
<p>I believe the answer is that they are unaffected as this seems to be a pure ATL vulnerability, but don't have enough knowledge in the underlying usage of ATL in the CLR to know.</p>
http://stackoverflow.com/questions/1001955/consuming-a-queues-messages-with-the-processing-resource-varying-by-message-type0Consuming a queue's messages with the processing resource varying by message typeKieran Benton2009-06-16T14:44:54Z2009-07-21T19:41:05Z
<p>I'm having some trouble putting together an algorithm for an asynchronous queue consumer thread, that is reading items off of a single queue that need to be dispatched to do some long running (several seconds at least) work.</p>
<p>Basically the queue can look as follows: A, A, A, A, A, B, B, A, B, A, A, A, A, A, C, B, A.</p>
<p>Ie. the A messages are far more common that other messages.</p>
<p>Our system has different concurrency values for each of the different message types, e.g. we can only execute 3 x A messages at once, but we can execute 5 x B and 4 x C messages at once.</p>
<p>My current (broken) algorithm is to have a single thread reading from the front of the queue and dispatching to a threadpool each job, with the body of each job waiting for enough resource to become available before executing the actual payload.</p>
<p>This means that if sufficient A messages arrive first, then they can "fill up" the thread pool's queue, and B+C messages are starved for much longer than necessary.</p>
<p>So far I've thought about having a separate thread pool for each message type (fairly low number of types), but I'm concerned about the efficiency of keeping that many threads around.</p>
<p>Any suggestions on how I can improve on this?</p>
http://stackoverflow.com/questions/1153216/is-encrypting-web-config-pointless3Is encrypting web.config pointless?Kieran Benton2009-07-20T12:12:50Z2009-07-20T12:24:26Z
<p>I was reading a blog today (<a href="http://somewebguy.wordpress.com/2009/07/20/is-encrypting-your-web-config-a-waste-of-time/" rel="nofollow">http://somewebguy.wordpress.com/2009/07/20/is-encrypting-your-web-config-a-waste-of-time/</a>) about both how to encrypt your appsettings/connectionstrings etc. using the aspnet_regiis tool. </p>
<p>He has a follow up post with some feedback from others saying this is a waste of time.</p>
<p>My question is, what do you think? Are you totally hosed as soon as anyone gets physical access to your web.config files anyway? Or is this a worthwhile precaution?</p>
http://stackoverflow.com/questions/1148214/any-reason-why-an-asp-net-2-0-application-with-no-code-would-take-2-minutes-to-lo/1148257#11482570Answer by Kieran Benton for Any reason why an ASP.Net 2.0 application with no code would take 2 minutes to load on first run?Kieran Benton2009-07-18T18:44:06Z2009-07-18T18:44:06Z<p>This could just be the initial appdomain compile startup cost but magnified because you're using a VPS. </p>
<p>What kind of spec have you got on that?</p>
http://stackoverflow.com/questions/1147583/fetch-userdata-on-each-request/1147604#11476040Answer by Kieran Benton for Fetch userdata on each requestKieran Benton2009-07-18T13:59:18Z2009-07-18T13:59:18Z<p>You should store this in Session and retrieve it into your controllers via a custom ModelBinder.</p>
http://stackoverflow.com/questions/1109768/how-to-use-output-caching-on-ashx-handler2How to use output caching on .ashx handlerKieran Benton2009-07-10T14:09:30Z2009-07-10T14:23:01Z
<p>How can I use output caching with a .ashx handler? In this case I'm doing some heavy image processing and would like the handler to be cached for a minute or so.</p>
<p>Also, does anyone have any recommendations on how to prevent dogpiling?</p>
http://stackoverflow.com/questions/1075680/how-can-i-convert-a-character-encoded-binary-string-to-hexadecimal-in-sql-server0How can I convert a character-encoded binary string to hexadecimal in SQL Server?Kieran Benton2009-07-02T17:29:33Z2009-07-05T18:46:58Z
<p>I'm trying to take a <code>VARCHAR(MAX)</code> with data in it as follows:
"00001001010001010111010101..." etc.</p>
<p>Then encode it as hexadecimal for more efficient return to the client.</p>
<p>Is it possible to do this? Either directly or converting the string into a real binary column first before calling <code>master.dbo.fn_varbintohexstr</code>?</p>
<p>As an example, given the string:</p>
<pre><code>0000100101000101011101011110
</code></pre>
<p>We should end up with:</p>
<pre><code>0000 = 0
1001 = 9
0100 = 4
0101 = 5
0111 = 7
0101 = 5
1110 = E
</code></pre>
<p>094575E.</p>
<p>Or if there is an even more efficient method (reading binary directly?) then that would be even better. SQL Server 2000 compatible solutions are preferable.</p>
http://stackoverflow.com/questions/1075307/sql-server-row-concatenation0Sql Server Row ConcatenationKieran Benton2009-07-02T16:16:35Z2009-07-02T16:28:58Z
<p>Hi all,</p>
<p>I have a table (table variable in-fact) that holds several thousand (50k approx) rows of the form:</p>
<pre><code>group (int) isok (bit) x y
20 0 1 1
20 1 2 1
20 1 3 1
20 0 1 2
20 0 2 1
21 1 1 1
21 0 2 1
21 1 3 1
21 0 1 2
21 1 2 2
</code></pre>
<p>And to pull this back to the client is a fairly hefty task (especially since isok is a bit). What I would like to do is transform this into the form:</p>
<pre><code>group mask
20 01100
21 10101
</code></pre>
<p>And maybe go even a step further by encoding this into a long etc.</p>
<p>NOTE: The way in which the data is stored currently cannot be changed.</p>
<p>Is something like this possible in SQL Server 2005, and if possible even 2000 (quite important)?</p>
<p><strong>EDIT:</strong> I forgot to make it clear that the original table is already in an implicit ordering that needs to be maintained, there isnt one column that acts as a linear sequence, but rather the ordering is based on two other columns (integers) as above (x & y)</p>
http://stackoverflow.com/questions/1070710/asp-net-mvc-routing-with-a-controller-named-propertiescontroller4ASP.NET MVC Routing with a controller named "PropertiesController"Kieran Benton2009-07-01T18:45:39Z2009-07-01T19:52:35Z
<p>I'm having a tricky issue (bear with me as I'm new to MVC) with trying to use a controller (and a route subsequently) with the name PropertiesController.</p>
<p>I believe this is because there is a directory (which I can't really remove) called "Properties" in my solution. Is there a way round this?</p>
<p>The route setup is just one simple route:</p>
<pre><code>routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Properties", action = "List", id = "" } // Parameter defaults
);
</code></pre>
<p>and the error I get in IIS7 when requesting "http://localhost/aptment2/properties/" is:</p>
<p><img src="http://img195.imageshack.us/img195/9523/200907011943.png" alt="alt text" /></p>
<p>Surely there is a way round this that I just can't find? Cheers.</p>
http://stackoverflow.com/questions/72153/msbuild-itemgroup-excluding-svn-directories-and-files-within5MSBuild ItemGroup, excluding .svn directories and files withinKieran Benton2008-09-16T13:28:06Z2009-06-24T15:16:17Z
<p>How can I construct a MSBuild ItemGroup to exclude .svn directories and all files within (recursively). I've got:</p>
<pre><code><ItemGroup>
<LibraryFiles Include="$(LibrariesReleaseDir)\**\*.*" Exclude=".svn" />
</ItemGroup>
</code></pre>
<p>At the moment, but this does not exclude anything!</p>
http://stackoverflow.com/questions/140149/deleting-windows-performance-counter-categories/1017515#10175150Answer by Kieran Benton for Deleting Windows performance counter categoriesKieran Benton2009-06-19T11:44:49Z2009-06-19T11:44:49Z<p>You could also use LinqPad, as that doesn't involve an install of any kind - <a href="http://www.linqpad.net/" rel="nofollow">http://www.linqpad.net/</a>.</p>
<p>Run the following code as a "C# Statement(s)":</p>
<p><code>System.Diagnostics.PerformanceCounterCategory.Delete("Name of category to delete");</code></p>
<p>I'd run it twice, first time to do the actual delete, second time to get an error message to confirm the delete was successful.</p>
http://stackoverflow.com/questions/83969/log4net-with-syslogappender-1kb-message-limit0Log4net with SyslogAppender, 1kb message limitKieran Benton2008-09-17T14:42:01Z2009-06-02T11:01:59Z
<p>Has anyone found a way to get around this? Or a better technique to conglomerate logging from multiple web servers reliably?</p>
<p>Any ideas on good log4net log file analysis tools too (plain text not XML) - apart from good 'ol grep of course :)</p>
http://stackoverflow.com/questions/1800695/c-securestring-question/1800733#1800733Comment by Kieran Benton on C# SecureString QuestionKieran Benton2009-11-25T23:56:32Z2009-11-25T23:56:32ZThats a good article, but its absolutely bonkers - not only that but you've still had the string in memory for some time, quick admin access on the machine -> hook in a debugger = thanks for your password. Can anyone really see the point of these?http://stackoverflow.com/questions/1800695/c-securestring-questionComment by Kieran Benton on C# SecureString QuestionKieran Benton2009-11-25T23:40:31Z2009-11-25T23:40:31ZI know what you mean - I've never understood the point of them either, they've always got to get casted to an array at some point!http://stackoverflow.com/questions/1747785/checking-for-open-port-on-multiple-machinesComment by Kieran Benton on Checking for open port on multiple machines.Kieran Benton2009-11-17T10:34:17Z2009-11-17T10:34:17ZWhat operating system are you using? Yes there are finite numbers of connections you can make - especially in non-server OSes.http://stackoverflow.com/questions/426421/wpf-command-line/426436#426436Comment by Kieran Benton on WPF Command LineKieran Benton2009-11-16T10:33:22Z2009-11-16T10:33:22ZCan you interact with the console (Console.ReadLine/WriteLine) at that point?http://stackoverflow.com/questions/1715470/building-an-installer-that-can-install-the-same-package-multiple-times-to-differ/1718237#1718237Comment by Kieran Benton on Building an installer that can install the same package multiple times (to different folders) with multiple configurationsKieran Benton2009-11-12T09:52:54Z2009-11-12T09:52:54ZExcellent answer thanks Sascha, thats pretty much exactly what I was looking for. Now to find the easiest way to author an Instance Transform! :)http://stackoverflow.com/questions/1715470/building-an-installer-that-can-install-the-same-package-multiple-times-to-differComment by Kieran Benton on Building an installer that can install the same package multiple times (to different folders) with multiple configurationsKieran Benton2009-11-11T15:20:16Z2009-11-11T15:20:16ZThanks Scott, does that just allow the install to take place then? What happens when you try to uninstall one (or the only one? not sure?) application that is listed in add/remove programs?http://stackoverflow.com/questions/1702196/how-often-is-the-application-store-refreshed-in-an-asp-net-website/1702291#1702291Comment by Kieran Benton on How often is the Application store refreshed in an ASP.Net Website?Kieran Benton2009-11-09T17:00:27Z2009-11-09T17:00:27ZIt's configurable and it depends on the version of IIS you are using I believe. See <a href="http://blogs.msdn.com/david.wang/archive/2006/01/26/Thoughts-on-Application-Pool-Recycling-and-Application-Availability.aspx" rel="nofollow">blogs.msdn.com/david.wang/archive/…</a> for more information on that.http://stackoverflow.com/questions/1679857/how-can-i-debug-preferably-in-an-ide-an-msbuild-script/1681798#1681798Comment by Kieran Benton on How can I debug (preferably in an IDE) an MSBuild script?Kieran Benton2009-11-05T16:56:06Z2009-11-05T16:56:06ZThanks, good advice.http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48045#48045Comment by Kieran Benton on Good Book on Scaling Asp.Net applicationsKieran Benton2009-10-23T15:11:23Z2009-10-23T15:11:23Z2 million+ unique users per hour? = 48m a day which is 0.8% of the worlds population... I'm sorry but that doesn't sound right to me!http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102835#102835Comment by Kieran Benton on What was your first home computer?Kieran Benton2009-10-14T15:59:26Z2009-10-14T15:59:26ZAww I haven't see a floppy like that in years! Here's to memories of changing the border colour of the screen in the first program I wrote in BASIC...http://stackoverflow.com/questions/1453661/are-binaryformatter-serialize-and-deserialize-thread-safe/1453667#1453667Comment by Kieran Benton on Are BinaryFormatter Serialize and Deserialize thread safe?Kieran Benton2009-09-21T09:52:06Z2009-09-21T09:52:06ZYes that is currently the hot path (we've measured). Its not the end of the world to instanciate a formatted for each request, but I wondered if anyone knew if it did internal caching etc. I was aware of the notice on MSDN, but as you probably know, it says that for a lot of classes that actually are instance thread safe in reality :)http://stackoverflow.com/questions/1409936/referencing-page-title-after-it-has-been-set-as-part-of-a-aspcontentplaceholder/1410685#1410685Comment by Kieran Benton on Referencing Page.Title after it has been set as part of a asp:contentplaceholderKieran Benton2009-09-11T14:21:46Z2009-09-11T14:21:46ZI thought I must have been doing something 'out of order', its these little things that drive me mad about WebForms sometimes! :) Thanks for the advice.http://stackoverflow.com/questions/1405204/how-can-i-get-the-relative-url-of-a-page-from-an-instance-of-the-page-object-itse/1405371#1405371Comment by Kieran Benton on How can I get the relative URL of a page from an instance of the page object itselfKieran Benton2009-09-10T13:46:27Z2009-09-10T13:46:27ZThanks Philip - I had thought this might be the case but wondered if there was a solution I was missing. Will have to work around it! Cheers.http://stackoverflow.com/questions/1405204/how-can-i-get-the-relative-url-of-a-page-from-an-instance-of-the-page-object-itse/1405212#1405212Comment by Kieran Benton on How can I get the relative URL of a page from an instance of the page object itselfKieran Benton2009-09-10T13:14:58Z2009-09-10T13:14:58ZI am, updating the question now to be more clear.http://stackoverflow.com/questions/1405204/how-can-i-get-the-relative-url-of-a-page-from-an-instance-of-the-page-object-itse/1405212#1405212Comment by Kieran Benton on How can I get the relative URL of a page from an instance of the page object itselfKieran Benton2009-09-10T13:11:03Z2009-09-10T13:11:03ZI know, but if I instance the page object directly, then there won't be a request object associated it.