User Ray Booysen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:31:26Zhttp://stackoverflow.com/feeds/user/42124http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807636/open-file-instead-of-save-file-in-silverlight-savefiledialog1Open File Instead of Save File in Silverlight SaveFileDialogRay Booysen2009-11-27T09:22:39Z2009-11-27T10:18:09Z
<p>In Silverlight, there is the SaveFileDialog which allows you to save a file to the user's local machine. The dialog opens only allowing you to save the file. What I'm looking for is a way to open the file similar to the dialog you get when downloading a file through the browser.</p>
<p>Aside from round-tripping the file to a server, or having the server generate the file (neither of which I can do), are there any options to do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1141903/silverlight-out-of-browser-host0Silverlight Out of Browser HostRay Booysen2009-07-17T07:51:46Z2009-11-24T14:20:55Z
<p>What is hosting the Silverlight application when running out of browser? I can imagine on Windows it uses some very thin IE host but what is it actually running for Windows and Mac machines?</p>
http://stackoverflow.com/questions/1681130/bind-to-attached-property-in-controltemplate-silverlight/1704728#17047280Answer by Ray Booysen for Bind to attached property in ControlTemplate - SilverlightRay Booysen2009-11-09T23:50:41Z2009-11-09T23:50:41Z<p>By the sounds of it, this is a Silverlight issue. More information at this post:</p>
<p><a href="http://forums.silverlight.net/forums/p/102737/299184.aspx" rel="nofollow">http://forums.silverlight.net/forums/p/102737/299184.aspx</a></p>
http://stackoverflow.com/questions/431836/get-domain-logonserver-in-c0Get Domain LogonServer in C#Ray Booysen2009-01-10T21:50:50Z2009-11-09T10:08:54Z
<p>In a command prompt I am able to get the domain logon server by typing:</p>
<pre><code>echo %logonserver%
</code></pre>
<p>How can I get this same result in C#?</p>
http://stackoverflow.com/questions/1292692/validatexaml-failure-on-a-tfs-build-with-a-silverlight-3-project0ValidateXAML Failure on a TFS Build with a Silverlight 3 ProjectRay Booysen2009-08-18T08:58:36Z2009-10-28T03:10:33Z
<p>Hi all</p>
<p>I have a Silverlight 3 project which compiles and runs fine when compiled on a development machine. On our TFS environment with Silverlight 3 and the Silverlight 3 SDK installed, I get the following error:</p>
<blockquote>
<p>C:\Users\tfsservice\AppData\Local\Temp\\Release\Sources\Source\Trunk\Themes\
UserDatesStyles.xaml(63,47,63,47):
error : The property 'Command' does
not exist on the type 'Button' in the
XML namespace
'clr-namespace:Mvvm.Input;assembly=Mvvm'.</p>
</blockquote>
<p>More information: Command is an attached property on Button that is part of the Mvvm assembly in the Mvvm.Input namespace.</p>
<p>Am I missing something on my TFS server? I would have thought that all I would require is the SDK. If I edit this project and change the ValidateXAML element to false, the TFS server does compile properly. However, this is obviously not the ideal situation.</p>
<p>Here is the XAML that causes it:</p>
<pre><code><ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:commands="clr-namespace:MvvmFramework.Input;assembly=MvvmFramework"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Style x:Key="UserDatesStyle" TargetType="controls:UserDates">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="controls:UserDates">
<Grid Height="600" Width="800" d:DesignWidth="800" d:DesignHeight="600">
<Button Content="Previous"
commands:CommandBinder.Command="{Binding PreviousPageCommand}"
Margin="0,0,10,0"
Style="{StaticResource PrevBtn}" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</code></pre>
http://stackoverflow.com/questions/1628727/silverlight-automation-similar-to-watin/1630040#16300400Answer by Ray Booysen for Silverlight Automation Similar to WatinRay Booysen2009-10-27T10:55:31Z2009-10-27T10:55:31Z<p>Have you had a look at the Silverlight Automation Peer?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc645045%28VS.95%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc645045(VS.95).aspx</a></p>
http://stackoverflow.com/questions/1100575/linq-select-correct-values-from-nested-collection0LINQ - Select correct values from nested collectionRay Booysen2009-07-08T21:14:50Z2009-10-22T07:34:17Z
<p>Consider the following class hierarchy:</p>
<pre><code>public class Foo
{
public string Name { get; set; }
public int Value { get; set; }
}
public class Bar
{
public string Name { get; set; }
public IEnumerable<Foo> TheFoo { get; set; }
}
public class Host
{
public void Go()
{
IEnumerable<Bar> allBar = //Build up some large list
//Get Dictionary<Bar, Foo> with max foo value
}
}
</code></pre>
<p>What I would like to do using Linq2Objects is to get an KeyValuePair where for each Bar in the allBBar collection we select the Foo with the maximum Value property. Can this be done easily in a single LINQ statement?</p>
http://stackoverflow.com/questions/1439907/what-are-the-differences-between-if-else-and-else-if/1445365#14453651Answer by Ray Booysen for What are the differences between if, else, and else if?Ray Booysen2009-09-18T15:41:27Z2009-09-18T15:41:27Z<pre><code>**IF** you are confused
read the c# spec
**ELSE IF** you are kind of confused
read some books
**ELSE**
everything should be OK.
</code></pre>
<p>:)</p>
http://stackoverflow.com/questions/1444858/lazy-or-sensible-to-leave-empty-legacy-classes/1444871#14448714Answer by Ray Booysen for Lazy or Sensible to leave empty legacy classes?Ray Booysen2009-09-18T14:21:18Z2009-09-18T14:21:18Z<p>Get rid of it. That is the point of source control. If you ever need to refer to it, it'll be in the history.</p>
http://stackoverflow.com/questions/1444252/bind-to-an-attached-behavior-on-a-storyboard/1444335#14443351Answer by Ray Booysen for Bind to an attached behavior on a StoryboardRay Booysen2009-09-18T12:43:22Z2009-09-18T12:43:22Z<p>This is something by design. If you have a freezable object that is put into a style, the style will be frozen to allow cross-thread access. But you binding is essentially an expression which means it cannot be frozen as data binding is single threaded.</p>
<p>If you need to do this, put the trigger outside the style under a framework element instead of in a style. You can do this in your Grid.Triggers section. This does suck a little as your style is no longer complete and you have to duplicate the triggers but it is a "by design" feature in WPF.</p>
<p>The full answer on MSDN Social forums is <a href="http://social.msdn.microsoft.com/forums/en-US/wpf/thread/8e97d92b-42cf-462e-b8d0-6d8b6bcb357a/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1443453/get-a-framework-element-from-a-storyboard/1443827#14438271Answer by Ray Booysen for Get a Framework element from a StoryboardRay Booysen2009-09-18T10:54:58Z2009-09-18T10:54:58Z<p>If you changed your XAML to something like this:</p>
<pre><code><Grid x:Name="grid">
<Grid.Resources>
<Storyboard x:Key="myStoryboard">
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:5" Storyboard.Target="{Binding ElementName = grid}"/>
</Storyboard>
<Style x:Key="myStyle" TargetType="{x:Type Label}">
<Style.Triggers>
<DataTrigger
Binding="{Binding Path=StartAnimation}" Value="true">
<DataTrigger.EnterActions>
<BeginStoryboard Storyboard="{StaticResource myStoryboard}" />
</DataTrigger.EnterActions>
</DataTrigger>
</Style.Triggers>
</Style>
</Grid.Resources>
<Label x:Name="labelHello" Grid.Row="0" Style="{StaticResource myStyle}">Hello</Label>
</Grid>
</code></pre>
<p>This introduces an x:Name to the grid and a Storyboard.Target to the DoubleAnimation. You can now get a reference to the grid with this code:</p>
<pre><code>Storyboard sb = //You mentioned you had a reference to this.
var timeLine = sb.Children.First();
var myGrid = Storyboard.GetTarget(timeLine);
</code></pre>
http://stackoverflow.com/questions/1443290/tooltip-documentation-in-visual-studio-2008-not-enough-info/1443300#14433001Answer by Ray Booysen for tooltip documentation in visual studio 2008 - not enough infoRay Booysen2009-09-18T08:48:53Z2009-09-18T08:48:53Z<p>You will get the parameter information once you open the ( in calling the method.</p>
<p>In this case: public void Hello(string param1, string param2)</p>
<p>The moment you type "Hello(" the tooltip will show the documentation for param1.
Once you type "Hello(value1," you will see the documentation for param2.</p>
http://stackoverflow.com/questions/1439346/c-select-xml-descendants-with-linq/1439378#14393780Answer by Ray Booysen for C# - Select XML Descendants with LinqRay Booysen2009-09-17T14:52:51Z2009-09-17T14:52:51Z<p>Hi avi</p>
<p>First of all, make sure your XML has a single root node:</p>
<pre><code><rows>
<row>
<field name="Id">1</field>
<field name="AreaId">1</field>
<field name="Name">ת&quot;א</field>
</row>
<row>
<field name="Id">2</field>
<field name="AreaId">4</field>
<field name="Name">אבטליון</field>
</row>
</rows>
</code></pre>
<p>After that you can use the following code to load the xml:</p>
<pre><code>string xml = //Get your XML here
XElement xElement = XElement.Parse(xml);
//This now holds the set of all elements named field
var items =
xElement
.Descendants("field")
.Where(n => (string)n.Attribute("name") == "Name");
</code></pre>
http://stackoverflow.com/questions/1438647/does-weakreference-work-with-string/1438715#14387151Answer by Ray Booysen for Does WeakReference work with String?Ray Booysen2009-09-17T12:55:18Z2009-09-17T12:55:18Z<p>This will definitely work with WeakReference without any problems as System.String is a simple reference type. It would be interesting to see your use case for using a WeakReference as it doesn't seem to fit the "normal" uses of WeakReference.</p>
<p>From the <a href="http://msdn.microsoft.com/en-us/library/ms404247%28VS.100%29.aspx" rel="nofollow">MSDN Guidelines</a>:</p>
<p>Use long weak references only when necessary as the state of the object is unpredictable after finalization.</p>
<p>Avoid using weak references to small objects because the pointer itself may be as large or larger.</p>
<p>Avoid using weak references as an automatic solution to memory management problems. Instead, develop an effective caching policy for handling your application's objects.</p>
http://stackoverflow.com/questions/1418472/how-to-debug-linq-to-sql-source/1418477#14184772Answer by Ray Booysen for How to Debug "Linq to SQL" SourceRay Booysen2009-09-13T18:25:29Z2009-09-13T18:25:29Z<p>Hi guiake</p>
<p>This is because the source symbols for Linq2SQL assemblies have not yet been released on the symbol servers.</p>
<p>Hopefully at some point they will.</p>
http://stackoverflow.com/questions/1221660/where-is-the-visual-studio-2008-installation-log0Where is the Visual Studio 2008 Installation LogRay Booysen2009-08-03T10:39:03Z2009-08-03T10:41:02Z
<p>I have an installation of Visual Studio 2008 that is failing. Where is the installation log that is generated and what is it's name?</p>
http://stackoverflow.com/questions/1171662/silverlight-fullscreen-limitations/1195961#11959610Answer by Ray Booysen for Silverlight fullscreen limitationsRay Booysen2009-07-28T18:39:54Z2009-07-28T18:39:54Z<p>The full reason for this is that a malicious Silverlight application could create a UI that matches your banking login screen, the Windows login screen, Facebook or whatever site they wanted your login details.</p>
<p>Not only are certain keyboard keys disabled, but full screen cannot be invoked unless there is a user activated action. For example, the user would have to click a button to go fullscreen, you as a developer are not able to make the app full-screen without this.</p>
<p>This is a pro-active response to known security risks by Microsoft and although there are downsides, the pros do outweigh the cons.</p>
http://stackoverflow.com/questions/1192587/how-often-is-the-silverlight-access-policy-accessed/1193264#11932641Answer by Ray Booysen for How often is the Silverlight Access policy accessed?Ray Booysen2009-07-28T10:35:00Z2009-07-28T10:35:00Z<p>One easy way to test this is to use <a href="http://www.fiddler2.com/Fiddler2/" rel="nofollow">Fiddler</a> and watch for requests to the policy file. The <a href="http://msdn.microsoft.com/en-us/library/cc838250%28VS.95%29.aspx" rel="nofollow">documentation</a> also specifies that the cross-domain policy file is requested only once per application session. This means that the runtime will only request it once and store the result in memory for the silverlight session.</p>
http://stackoverflow.com/questions/1183176/implementing-a-simple-master-detail-scenario-for-wpf-in-mvvm/1193230#11932300Answer by Ray Booysen for Implementing a simple Master-Detail scenario for WPF in MVVMRay Booysen2009-07-28T10:26:26Z2009-07-28T10:26:26Z<p>I'm guessing here since your question is a little vague that you're not quite sure how to hook the pieces together. For simplicity's sake let us hook the ViewModel directly to the user control and get it all binding.</p>
<p>As long as your view model is populated with the correct set of People, all the binding below will handle the data and show the correct data. Take note of the two-way binding for the selected item in the combobox. That allows WPF to send back the new selected item to the viewmodel.</p>
<p>In the UserControl's code behind:</p>
<pre><code>public MyUserControl()
{
DataContext = new MyViewModel();
}
</code></pre>
<p>In the UserControl's XAML:</p>
<pre><code><ComboBox ItemsSource="{Binding AllPeople}" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" />
<TextBox Text="{Binding SelectedPerson.LastName}" />
<TextBox Text="{Binding SelectedPerson.FirstName}" />
<TextBox Text="{Binding SelectedPerson.EmailName}" />
</code></pre>
<p>Your ViewModel:</p>
<pre><code>private IEnumerable<Person> _allPeople;
public IEnumerable<Person> AllPeople
{
get { return _allPeople; }
set
{
if (!_allPeople != value)
{
_allPeople = value;
NotifyPropertyChanged("AllPeople");
}
}
}
private Person _selectedItem;
public Person SelectedItem
{
get { return _selectedItem; }
set
{
if (!_selectedItem != value)
{
_selectedItem = value;
NotifyPropertyChanged("SelectedItem");
}
}
}
private void NotifyPropertyChanged(string propertyName)
{
if ( PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName);
}
}
}
public class Person
{
public int PersonId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1157791/c-calling-a-method-from-within-a-class/1157801#115780110Answer by Ray Booysen for C# - Calling a method from within a ClassRay Booysen2009-07-21T07:49:22Z2009-07-21T08:07:48Z<p>Hi Nate,</p>
<p>You have to instantiate <code>c1</code> and <code>f2</code>. Try this:</p>
<pre><code>public partial class Form1 : Form
{
Form2 frm2;
Class1 cl;
public Form1()
{
c1 = new Class1();
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
frm2 = new Form2();
cl.DoSomethingWithText(frm2);
frm2.Show();
}
}
class Class1
{
public void DoSomethingWithText(Test1.Form2 form)
{
form.richTextBox1.Text = "Blah blah blah";
}
}
</code></pre>
<p><strong><em>UPDATE</em></strong></p>
<p>As Keith has pointed out, because you're instanciating a new version of Form2, the rich textbox will never show the blah blah blah code. I've updated the sample to fix this.</p>
http://stackoverflow.com/questions/503130/what-do-you-want-inscribed-on-your-development-inspired-headstone13What do you want inscribed on your development inspired headstoneRay Booysen2009-02-02T13:06:12Z2009-07-17T07:52:36Z
<p>When we one day shed our mortal coil what would you like inscribed on your headstone? I think mine would be:</p>
<p>RayBooysen : IDisposable</p>
<p>Something fun for Monday</p>
http://stackoverflow.com/questions/324035/how-do-i-bringtoview-the-latest-item-added-to-a-bound-observablecollection/1118207#11182070Answer by Ray Booysen for How do I BringToView the latest item added to a bound ObservableCollectionRay Booysen2009-07-13T08:04:39Z2009-07-13T08:04:39Z<p>Would you not do this in the ViewModel?</p>
<p>Whatever ViewModel has the ObservableCollection, expose a property of type T named SelectedItem and whenever the ObservableCollection changes with a new item, the CollectionChanged event will allow you to set the SelectedItem property. Once this is done, wire up the SelectedItem in the control to this property on your ViewModel.</p>
<p>This will obviously only work with controls like ListBox where a SelectedItem property exists.</p>
http://stackoverflow.com/questions/1097180/silverlight-toolkit-charting-control-show-column-colours0Silverlight Toolkit Charting Control - Show "Column" ColoursRay Booysen2009-07-08T10:02:59Z2009-07-09T09:12:47Z
<p>In the silverlight toolkit chart control, the legend on the X Axis can show an indeterminate amount of points. E.g. 1,2,3,4,5.</p>
<p>Would it be possible to colour the virtual columns that this creates? I.e. in the space where legend mark 2 is shown, the space above to the top of the control is shaded to a different colour. This will make it interesting as as the chart scales, the legends on the X Axis change with the size available.</p>
<p>This is mainly for a series of type ScatterSeries for my specific example but could extend to a series of LineSeries.</p>
<p>Hope this explains my requirements.</p>
http://stackoverflow.com/questions/1098545/silverlight-2-how-to-know-all-async-wcf-calls-has-been-completed/1100520#11005201Answer by Ray Booysen for Silverlight 2 How to know all ASYNC WCF calls has been completedRay Booysen2009-07-08T21:01:05Z2009-07-08T21:01:05Z<p>Similiar to Jacob, abstract this away into a separate class. This will at least simplify your calling class and remove the complexity of joining the calls.</p>
<p>In your class, in the simplest terms simply on each completed event from the async call, check how many events have completed, if it matches the total, fire a completed event of your own. Somethign like this:</p>
<pre><code>public class DataProvider()
{
private int callCount = 0;
public event EventHandler Completed;
public void Go()
{
callCount = 0;
//Async WCF Calls
DataService.GetPersonInfo(sUser);
DataService.GetSalaryInfo(sUser);
DataService.GetDepartmentInfo(sUser);
}
public void GetSalaryInfoCompleted(object sender, SomeArgs e)
{
//Do something with the results here
CheckIfCompleted();
}
public void GetDepartmentInfoCompleted(object sender, SomeArgs e)
{
//Do something with the results here
CheckIfCompleted();
}
public void GetPersonInfoCompleted(object sender, SomeArgs e)
{
//Do something with the results here
CheckIfCompleted();
}
private void CheckIfCompleted()
{
callCount++;
if ( callCount == 3 )
{
Completed(this, EventArgs.Empty);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1084510/generally-preferred-method-for-a-wait-screen-using-mvvm-and-silverlight/1084638#10846380Answer by Ray Booysen for Generally Preferred Method for a 'Wait' Screen using MVVM and SilverlightRay Booysen2009-07-05T19:00:31Z2009-07-05T19:33:20Z<p>You could use the Mediator prototype that Josh Smith created to have a loosely coupled messaging system from the VM to the V. The VM could push out a message that it is "busy", with the view subscribing to this "IsBusy" message.</p>
<p>The view could then show the correct dialog until a "IsNotBusy" message is received.</p>
<p>Another option is to pass to the ViewModel in the constructor some interface like IDialogProvider that has methods to show a dialog. The implementation of this provider will be view specific but at least the view model only knows about the interface and not a concrete implementation.</p>
<pre><code>public interface IDialogProvider
{
void ShowErrorMessage(string message);
}
</code></pre>
<p><a href="http://joshsmithonwpf.wordpress.com/2009/04/06/a-mediator-prototype-for-wpf-apps/" rel="nofollow">Mediator Prototype</a></p>
http://stackoverflow.com/questions/1066429/application-current-changes-when-using-reflection-to-create-an-instance-of-anothe/1084603#10846030Answer by Ray Booysen for Application.Current changes when using reflection to create an instance of another Application classRay Booysen2009-07-05T18:36:16Z2009-07-05T18:36:16Z<p>Would it not be simpler to just share the resource dictionaries and then compile the resources into each xap file? It seems this approach makes it a lot more complicated than it requires it to be.</p>
http://stackoverflow.com/questions/1082425/source-attribute-of-silverlight-multiscaleimage/1084588#10845880Answer by Ray Booysen for Source attribute of Silverlight MultiScaleImageRay Booysen2009-07-05T18:31:55Z2009-07-05T18:31:55Z<p>Hello there</p>
<p>Inside the GeneratedImages folder is an xml file called dzc_output.xml that should be the new end-point for a MultiScaleImage.</p>
<p>With the new versions of DeepZoomComposer, the bin file format has been replaced with this new xml file.</p>
http://stackoverflow.com/questions/1084515/load-images-via-unc-in-silverlight/1084576#10845760Answer by Ray Booysen for Load images via UNC in silverlightRay Booysen2009-07-05T18:25:31Z2009-07-05T18:25:31Z<p>Essentially no.</p>
<p>The only way that Silverlight can retrieve files is:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bdts8hk0%28VS.71%29.aspx" rel="nofollow">IsolatedStorage</a> which allows Silverlight to store a few MB of data on the client's computer.
HTTP requests as long as the originating server has the appropriate <a href="http://msdn.microsoft.com/en-us/library/cc838250%28VS.95%29.aspx" rel="nofollow">cross domain policy file</a> in place. If you serve the images/files from the same domain as the Silverlight application is hosted on, no cross domain policy file is required.</p>
<p>The easiest way you can get this working is to set up a web server that can serve up your files over HTTP.</p>
http://stackoverflow.com/questions/1056997/team-foundation-server-build-with-password-protected-codesigning-fails/1057108#10571083Answer by Ray Booysen for Team Foundation Server Build with password protected codesigning failsRay Booysen2009-06-29T08:07:06Z2009-06-29T08:20:41Z<p>Hi Sorksoot</p>
<p>This <a href="http://ozgrant.com/2008/03/13/strong-name-your-assemblies-with-team-build-using-a-private-key/" rel="nofollow">blog post</a> below details the exact steps </p>
<p><strong>Setup Key Files</strong></p>
<p>Create a password-protected private/public key pair (KeyPair.pfx) using the Visual Studio “Signing” tab within a project’s properties
Extract the public key from the key pair and copy it to a separate file (Key.snk)
sn.exe -p KeyPair.pfx Key.snk</p>
<p>Copy the KeyPair.pfx to your build server. I use C:\Program Files\MSBuild\KeyFile.pfx, because it can then be accessed by the $(MSBuildExtensionsPath) MSBuild property.
Move the KeyPair.pfx file to a safe & secure location. Keep the password secret as well.
Copy the Key.snk to a shared location where your developers can access it.
Setup Projects for Signing</p>
<p>For each assembly that you want to sign:</p>
<ol>
<li>Open the Project Properties | Signing page</li>
<li>Select the [X] Sign the assembly checkbox.</li>
<li>Select the [X] Delay sign only checkbox.</li>
<li>Select from the key file dropdown.</li>
<li>Browse to the shared location and select the Key.snk file</li>
<li>The snk file will be copied to each project directory that you assign it to</li>
<li>Copy the key file from one of your projects into Solution Items so that you can use it for the test run configuration</li>
</ol>
<p><strong>Setup Test Run Configuration for Re-Signing</strong></p>
<p>If you want to instrument your assemblies and enable Code Coverage for your unit tests, then you need to specify a key file for re-signing.</p>
<p>Open the LocalTestRun.testrunconfig file
On the Code Coverage tab, select the key as the Re-Signing key file</p>
<p><strong>Disable Strong-Name Verification on Developer Workstations</strong></p>
<p>Since you are delay-signing with only the public key, .NET CLR assembly verification will fail with assemblies built locally. When the verification fails you won’t be able to run or debug the assemblies.</p>
<p>To overcome this in development, you need to disable strong-name verification for assemblies that you build locally and delay-sign with your public key.</p>
<p>Open a Visual Studio Command Prompt
Type:
sn.exe -tp Key.snk</p>
<p>This will output some data including the token.</p>
<p>Type:
sn -Vr *,<></p>
<p>This will disable strong name verification for all assemblies signed with your public key.
You can list current settings for strong name verification with:
sn -Vl</p>
<p><strong>Installing the Private Key for Team Build</strong></p>
<p>Since the private key (Key.pfx) is password protected – Team Build cannot access it. Thanks to <a href="http://blogs.msdn.com/nagarajp/archive/2005/11/08/490501.aspx" rel="nofollow">Nagaraju Palla’s Blog: Using Password Protected Signing Keys in Team Build</a>, we have a solution.</p>
<p>Logon to the Team Build server as the build service account
Open the project in Visual Studio
Build the project in Visual Studio
You will be prompted for the password to the private key file.
Enter the password
Close Visual Studio & Log off
The private key file is now installed in the build service account’s local certificate store and Team Build can access it without prompting for the password again. This certificate store is as secure as the build service account’s password. (Hint: Make it just as strong as your keyfile’s password)</p>
<p><strong>Updating TFSBuild.proj Build Script</strong></p>
<p>Team Build has access to the private keyfile and password. This allows it to fully-sign the assemblies.</p>
<p>To override the project settings and instruct Team Build to use the private keyfile and disable partial-signing, we need to set the CustomPropertiesForBuild property in TFSBuild.proj</p>
<p>Check-out your TFSBuild.proj build script
Search for the placeholder property (near line 130 by default)
Replace it with the following:
SignAssembly=true;DelaySign=false;AssemblyOriginatorKeyFile=$(MSBuildExtensionsPath)\Key.pfx
Check-in your changes
Queue a build
Verifying Team Build output</p>
<p>To check that Team Build has correctly strongly named your assemblies, you can use the sn.exe utility to verify the strong name signature.</p>
<p>Open a Visual Studio Command Prompt
Type:
sn.exe -vf assemblyname.dll</p>
<p>You can also verify all your assemblies at the same time:</p>
<p>Open a Visual Studio Command Prompt
Type:
FOR %a IN (*.dll) DO sn.exe -vf %a</p>
http://stackoverflow.com/questions/1044819/why-are-all-files-marked-with-merge-in-tfs/1045839#10458390Answer by Ray Booysen for Why are all files marked with 'merge' in TFS?Ray Booysen2009-06-25T19:44:49Z2009-06-25T19:44:49Z<p>In Visual Studio 2008 and TFS 2008, this does not occur. Only files that have changed will be marked as merge. If you do a compare of a file between the branch and the trunk are there any changes? Changes such as encoding will still make TFS merge this file back.</p>
http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/481839#481839Comment by Ray Booysen on What are the biggest gotchas in Silverlight 2.0?Ray Booysen2009-11-27T09:30:57Z2009-11-27T09:30:57ZA hack? Or a properly designed double-click implementation that takes 10 minutes to write?http://stackoverflow.com/questions/431836/get-domain-logonserver-in-c/1700128#1700128Comment by Ray Booysen on Get Domain LogonServer in C#Ray Booysen2009-11-09T23:33:20Z2009-11-09T23:33:20Zyou do. It is logonserverhttp://stackoverflow.com/questions/1537373/collectionviewsource-in-silverlightComment by Ray Booysen on CollectionViewSource in silverlightRay Booysen2009-11-02T09:45:58Z2009-11-02T09:45:58ZAre we able to see your code?http://stackoverflow.com/questions/1630005/wpf-application-crash-when-running-as-a-screensaverComment by Ray Booysen on WPF application crash when running as a screensaverRay Booysen2009-10-27T10:52:17Z2009-10-27T10:52:17ZHave you attached a debugger to see what is null?http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/481831#481831Comment by Ray Booysen on What are the biggest gotchas in Silverlight 2.0?Ray Booysen2009-10-12T16:21:21Z2009-10-12T16:21:21Zclientaccesspolicy.xml has nothing to do with .NET 3.5 or ASP or ASP.NET. Silverlight will try request the clientaccesspolicy.xml file first and then the crossdomain.xml file to maintain compatability with Flash.http://stackoverflow.com/questions/1445283/if-you-could-be-a-c-keyword-which-would-you-beComment by Ray Booysen on If you could be a C# keyword which would you be?Ray Booysen2009-09-20T20:36:22Z2009-09-20T20:36:22ZWow Thomas. How authoratitive.http://stackoverflow.com/questions/1445283/if-you-could-be-a-c-keyword-which-would-you-beComment by Ray Booysen on If you could be a C# keyword which would you be?Ray Booysen2009-09-18T15:58:54Z2009-09-18T15:58:54ZHardly non-sensical. Its a Friday too. :)http://stackoverflow.com/questions/1444858/lazy-or-sensible-to-leave-empty-legacy-classes/1444871#1444871Comment by Ray Booysen on Lazy or Sensible to leave empty legacy classes?Ray Booysen2009-09-18T15:16:12Z2009-09-18T15:16:12ZDefinitely, makes perfect sense.http://stackoverflow.com/questions/1444252/bind-to-an-attached-behavior-on-a-storyboard/1444335#1444335Comment by Ray Booysen on Bind to an attached behavior on a StoryboardRay Booysen2009-09-18T13:44:19Z2009-09-18T13:44:19ZThe idea still stands regarding the freezable objects but a solution? not sure.http://stackoverflow.com/questions/1444252/bind-to-an-attached-behavior-on-a-storyboard/1444335#1444335Comment by Ray Booysen on Bind to an attached behavior on a StoryboardRay Booysen2009-09-18T13:43:49Z2009-09-18T13:43:49ZHmm that makes it more complicated. Not quite sure then.http://stackoverflow.com/questions/1443753/custom-sorting-with-linq/1443776#1443776Comment by Ray Booysen on Custom sorting with LINQRay Booysen2009-09-18T10:44:41Z2009-09-18T10:44:41ZThis doesn't sort in the way he wants.http://stackoverflow.com/questions/1437611/when-serializing-a-custom-generic-collection-to-xml-how-do-i-add-an-attribute-toComment by Ray Booysen on When serializing a custom generic collection to Xml how do I add an attribute to the generated collection element. Ray Booysen2009-09-17T09:01:27Z2009-09-17T09:01:27ZHow are you serialising it?http://stackoverflow.com/questions/1432684/post-data-in-asp-vb-net-webserviceComment by Ray Booysen on Post data in asp vb.net webserviceRay Booysen2009-09-16T12:37:43Z2009-09-16T12:37:43Zcan we see what the signature of your web service looks like?http://stackoverflow.com/questions/1404435/c-string-split-out-of-memory-exception-when-reading-tab-separated-fileComment by Ray Booysen on C# string.split() "Out of memory exception" when reading tab separated fileRay Booysen2009-09-10T10:17:03Z2009-09-10T10:17:03ZAs an aside, Eric Lippert has a great blog on OutOfMemoryExceptions. <a href="http://blogs.msdn.com/ericlippert/archive/2009/06/08/out-of-memory-does-not-refer-to-physical-memory.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/…</a>http://stackoverflow.com/questions/1398070/how-to-randomly-select-a-string-using-cComment by Ray Booysen on How to randomly select a string using C#?Ray Booysen2009-09-09T07:26:55Z2009-09-09T07:26:55ZCan you please explain a little more as to what you want? What do you mean by random? Do you want it to say Good morning in the morning and good afternoon in the afternoon?