I hereby claim:
- I am danrigby on github.
- I am danrigby (https://keybase.io/danrigby) on keybase.
- I have a public key whose fingerprint is 16E8 38A7 E9C7 0998 B356 72C5 449F 0CD5 4F07 61A4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
using System.ComponentModel; | |
/// <summary> | |
/// Implementation of <see cref="INotifyPropertyChanged" /> to simplify models. | |
/// </summary> | |
public abstract class BindableBase : INotifyPropertyChanged | |
{ | |
/// <summary> | |
/// Multicast event for property change notifications. | |
/// </summary> |
Create a folder named Content
under the Project Folder.
Add to the XNA Windows project file:
<PropertyGroup>
<PostBuildEvent>xcopy "$(ProjectDir)$(OutDir)Content\*.*" "$(ProjectDir)Content" /S /I /R /Y</PostBuildEvent>
</PropertyGroup>