From cd5660ffafbd308e8ba8f109e9d43be36f9e219f Mon Sep 17 00:00:00 2001 From: Giorgi Date: Fri, 13 Jan 2012 23:46:38 +0400 Subject: [PATCH] Added README and ignore files. --- .gitignore | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ .hgignore | 33 +++++++++++++++++++++++++++++++++ README | 1 + 3 files changed, 83 insertions(+) create mode 100644 .gitignore create mode 100644 README diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..49959eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +#OS junk files +[Tt]humbs.db +*.DS_Store + +#Visual Studio files +*.[Oo]bj +*.user +*.aps +*.pch +*.vspscc +*.vssscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.[Cc]ache +*.ilk +*.log +*.lib +*.sbr +*.sdf +*.opensdf +*.unsuccessfulbuild +ipch/ +obj/ +[Bb]in +[Dd]ebug*/ +[Rr]elease*/ +Ankh.NoLoad + +#Tooling +_ReSharper*/ +*.resharper +[Tt]est[Rr]esult* + +#Project files +[Bb]uild/ + +#Subversion files +.svn + +# Office Temp Files +~$* + +#NuGet +packages/ \ No newline at end of file diff --git a/.hgignore b/.hgignore index e69de29..b178879 100644 --- a/.hgignore +++ b/.hgignore @@ -0,0 +1,33 @@ +# use glob syntax +syntax: glob + +*.obj +*.pdb +*.user +*.aps +*.pch +*.vspscc +*.vssscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.cache +*.ilk +*.log +*.lib +*.sbr +*.scc +[Bb]in +[Dd]ebug*/ +obj/ +[Rr]elease*/ +_ReSharper*/ +[Tt]humbs.db +[Tt]est[Rr]esult* +[Bb]uild[Ll]og.* +*.[Pp]ublish.xml +*.resharper \ No newline at end of file diff --git a/README b/README new file mode 100644 index 0000000..e1793ba --- /dev/null +++ b/README @@ -0,0 +1 @@ +This is a silverlight 4 application with remote control support. The application uses native extensions for silverlight to listen to windows messages and respond to them. It also shows how to add Windows 7 specific features such as taskbar buttons and progress. \ No newline at end of file