From 0c58a1fe37c52308dda68dfc91607da41da5d509 Mon Sep 17 00:00:00 2001 From: James Fisher Date: Tue, 6 Sep 2016 12:38:33 +0100 Subject: [PATCH] first commit, version 0.1 --- .gitignore | 245 +++++++++++++++++++++++++++++++++ ReTracker.sln | 22 +++ ReTracker/ReTracker.csproj | 102 ++++++++++++++ ReTracker/ReTrackerGUI.xaml | 40 ++++++ ReTracker/ReTrackerGUI.xaml.cs | 167 ++++++++++++++++++++++ ReTracker/ReTrackerMachine.cs | 84 +++++++++++ ReTracker/RelayCommand.cs | 33 +++++ ReTracker/TargetVM.cs | 25 ++++ ReTracker/Track.cs | 67 +++++++++ readme.md | 57 ++++++++ 10 files changed, 842 insertions(+) create mode 100644 .gitignore create mode 100644 ReTracker.sln create mode 100644 ReTracker/ReTracker.csproj create mode 100644 ReTracker/ReTrackerGUI.xaml create mode 100644 ReTracker/ReTrackerGUI.xaml.cs create mode 100644 ReTracker/ReTrackerMachine.cs create mode 100644 ReTracker/RelayCommand.cs create mode 100644 ReTracker/TargetVM.cs create mode 100644 ReTracker/Track.cs create mode 100644 readme.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a2238d --- /dev/null +++ b/.gitignore @@ -0,0 +1,245 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +[Xx]64/ +[Xx]86/ +[Bb]uild/ +bld/ +[Bb]in/ +[Oo]bj/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml + +# TODO: Un-comment the next line if you do not want to checkin +# your web deploy settings because they may include unencrypted +# passwords +#*.pubxml +*.publishproj + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Microsoft Azure ApplicationInsights config file +ApplicationInsights.config + +# Windows Store app package directory +AppPackages/ +BundleArtifacts/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# LightSwitch generated files +GeneratedArtifacts/ +ModelManifest.xml + +# Paket dependency manager +.paket/paket.exe + +# FAKE - F# Make +.fake/ \ No newline at end of file diff --git a/ReTracker.sln b/ReTracker.sln new file mode 100644 index 0000000..eca13f8 --- /dev/null +++ b/ReTracker.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReTracker", "ReTracker\ReTracker.csproj", "{6E18ABF1-3E6B-44C5-BD14-E70C24F42147}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6E18ABF1-3E6B-44C5-BD14-E70C24F42147}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6E18ABF1-3E6B-44C5-BD14-E70C24F42147}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6E18ABF1-3E6B-44C5-BD14-E70C24F42147}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6E18ABF1-3E6B-44C5-BD14-E70C24F42147}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/ReTracker/ReTracker.csproj b/ReTracker/ReTracker.csproj new file mode 100644 index 0000000..df653b4 --- /dev/null +++ b/ReTracker/ReTracker.csproj @@ -0,0 +1,102 @@ + + + + Debug + AnyCPU + 8.0.30703 + 2.0 + {6E18ABF1-3E6B-44C5-BD14-E70C24F42147} + Library + Properties + ReTracker + ReTracker.NET + v4.0 + 512 + Client + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + true + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + true + + + true + E:\Users\james.fisher\Programs\Jeskola\Buzz\Gear\Generators\ + DEBUG;TRACE + true + full + AnyCPU + prompt + MinimumRecommendedRules.ruleset + + + true + ..\..\..\..\Programs\Jeskola\Buzz\Gear\Generators\ + DEBUG;TRACE + true + full + AnyCPU + prompt + MinimumRecommendedRules.ruleset + + + + ..\..\..\..\Programs\Jeskola\Buzz\BuzzGUI.Common.dll + + + ..\..\..\..\Programs\Jeskola\Buzz\BuzzGUI.Interfaces.dll + + + + + + + + + + + + + + + + + + ReTrackerGUI.xaml + + + + + + + + + + + Designer + MSBuild:Compile + + + + + \ No newline at end of file diff --git a/ReTracker/ReTrackerGUI.xaml b/ReTracker/ReTrackerGUI.xaml new file mode 100644 index 0000000..a85bfe2 --- /dev/null +++ b/ReTracker/ReTrackerGUI.xaml @@ -0,0 +1,40 @@ + + + + + +