├── .gitattributes ├── .gitbook.yaml ├── .github └── workflows │ └── dotnet.yaml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── Dahl Design Properties.sln ├── DahlDesign.Plugin.csproj ├── DataPlugin.cs ├── DataPluginSettings.cs ├── GameData.cs ├── Properties ├── AssemblyInfo.cs ├── DesignTimeResources.xaml ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources └── Dahl icon.png ├── Sections ├── Acceleration.cs ├── Calculation.cs ├── DDC.cs ├── Dashboard.cs ├── Rotary.cs ├── Screen.cs ├── SectionBase.cs ├── SmoothGear.cs └── Template.cs ├── SettingsControl.xaml ├── SettingsControl.xaml.cs ├── app.config ├── gitbook ├── .gitbook │ └── assets │ │ ├── Capture3.PNG │ │ ├── Dahl design text.PNG │ │ ├── Dependencies.png │ │ ├── image (1).png │ │ ├── image (2) (1).png │ │ ├── image (2).png │ │ ├── image (3).png │ │ ├── image.png │ │ ├── simhub1.PNG │ │ ├── spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (1).png │ │ ├── spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (2).png │ │ ├── spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (3).png │ │ ├── spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo.png │ │ ├── wheel slip (1).png │ │ └── wheel slip.png ├── Properties │ ├── README.md │ ├── car-info-1.md │ ├── car-info-2.md │ ├── car-info.md │ ├── dashboard-control.md │ ├── dashboard-settings.md │ ├── ddc.md │ ├── fuel-and-strategy.md │ ├── launch.md │ ├── led-control.md │ ├── pit-service.md │ └── sw1.md ├── README.md ├── SUMMARY.md ├── cars │ ├── README.md │ ├── adding-more.md │ ├── supported-cars.md │ └── supported-tracks.md ├── introduction │ ├── README.md │ ├── dependencies.md │ ├── install.md │ └── plugin-menu.md ├── pit-menu.md ├── properties │ ├── lap-sectors.md │ ├── lap-timing.md │ ├── opponents.md │ ├── pit-exit.md │ ├── race.md │ ├── stint.md │ └── utility.md └── showcase.md ├── iRacing ├── CarInfos.cs ├── Enums.cs ├── Globals.cs ├── LapRecords.cs ├── Models │ ├── Cars.cs │ ├── PitOpponents.cs │ └── Tracks.cs ├── PitCommands.cs ├── Tires.cs ├── TrackInfos.cs ├── iRacing.cs └── iRacingSpotter.cs ├── images └── blackLogo.png ├── packages.config └── requirements.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/.github/workflows/dotnet.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "omnisharp.useModernNet": false 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dahl Design Properties.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Dahl Design Properties.sln -------------------------------------------------------------------------------- /DahlDesign.Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/DahlDesign.Plugin.csproj -------------------------------------------------------------------------------- /DataPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/DataPlugin.cs -------------------------------------------------------------------------------- /DataPluginSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/DataPluginSettings.cs -------------------------------------------------------------------------------- /GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/GameData.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/DesignTimeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Properties/DesignTimeResources.xaml -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Dahl icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Resources/Dahl icon.png -------------------------------------------------------------------------------- /Sections/Acceleration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Acceleration.cs -------------------------------------------------------------------------------- /Sections/Calculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Calculation.cs -------------------------------------------------------------------------------- /Sections/DDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/DDC.cs -------------------------------------------------------------------------------- /Sections/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Dashboard.cs -------------------------------------------------------------------------------- /Sections/Rotary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Rotary.cs -------------------------------------------------------------------------------- /Sections/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Screen.cs -------------------------------------------------------------------------------- /Sections/SectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/SectionBase.cs -------------------------------------------------------------------------------- /Sections/SmoothGear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/SmoothGear.cs -------------------------------------------------------------------------------- /Sections/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/Sections/Template.cs -------------------------------------------------------------------------------- /SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/SettingsControl.xaml -------------------------------------------------------------------------------- /SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/SettingsControl.xaml.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/app.config -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/Capture3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/Capture3.PNG -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/Dahl design text.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/Dahl design text.PNG -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/Dependencies.png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/image (1).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/image (2) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/image (2) (1).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/image (2).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/image (3).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/image.png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/simhub1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/simhub1.PNG -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (1).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (2).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo (3).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/spaces_jbYAjQCk3opS973PPvtm_uploads_git-blob-ab398c7e23d1ea0e86e9ecdaa50f57e756ab5314_blackLogo.png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/wheel slip (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/wheel slip (1).png -------------------------------------------------------------------------------- /gitbook/.gitbook/assets/wheel slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/.gitbook/assets/wheel slip.png -------------------------------------------------------------------------------- /gitbook/Properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/README.md -------------------------------------------------------------------------------- /gitbook/Properties/car-info-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/car-info-1.md -------------------------------------------------------------------------------- /gitbook/Properties/car-info-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/car-info-2.md -------------------------------------------------------------------------------- /gitbook/Properties/car-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/car-info.md -------------------------------------------------------------------------------- /gitbook/Properties/dashboard-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/dashboard-control.md -------------------------------------------------------------------------------- /gitbook/Properties/dashboard-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/dashboard-settings.md -------------------------------------------------------------------------------- /gitbook/Properties/ddc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/ddc.md -------------------------------------------------------------------------------- /gitbook/Properties/fuel-and-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/fuel-and-strategy.md -------------------------------------------------------------------------------- /gitbook/Properties/launch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/launch.md -------------------------------------------------------------------------------- /gitbook/Properties/led-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/led-control.md -------------------------------------------------------------------------------- /gitbook/Properties/pit-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/pit-service.md -------------------------------------------------------------------------------- /gitbook/Properties/sw1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/Properties/sw1.md -------------------------------------------------------------------------------- /gitbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/README.md -------------------------------------------------------------------------------- /gitbook/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/SUMMARY.md -------------------------------------------------------------------------------- /gitbook/cars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/cars/README.md -------------------------------------------------------------------------------- /gitbook/cars/adding-more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/cars/adding-more.md -------------------------------------------------------------------------------- /gitbook/cars/supported-cars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/cars/supported-cars.md -------------------------------------------------------------------------------- /gitbook/cars/supported-tracks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/cars/supported-tracks.md -------------------------------------------------------------------------------- /gitbook/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/introduction/README.md -------------------------------------------------------------------------------- /gitbook/introduction/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/introduction/dependencies.md -------------------------------------------------------------------------------- /gitbook/introduction/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/introduction/install.md -------------------------------------------------------------------------------- /gitbook/introduction/plugin-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/introduction/plugin-menu.md -------------------------------------------------------------------------------- /gitbook/pit-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/pit-menu.md -------------------------------------------------------------------------------- /gitbook/properties/lap-sectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/lap-sectors.md -------------------------------------------------------------------------------- /gitbook/properties/lap-timing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/lap-timing.md -------------------------------------------------------------------------------- /gitbook/properties/opponents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/opponents.md -------------------------------------------------------------------------------- /gitbook/properties/pit-exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/pit-exit.md -------------------------------------------------------------------------------- /gitbook/properties/race.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/race.md -------------------------------------------------------------------------------- /gitbook/properties/stint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/stint.md -------------------------------------------------------------------------------- /gitbook/properties/utility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/properties/utility.md -------------------------------------------------------------------------------- /gitbook/showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/gitbook/showcase.md -------------------------------------------------------------------------------- /iRacing/CarInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/CarInfos.cs -------------------------------------------------------------------------------- /iRacing/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Enums.cs -------------------------------------------------------------------------------- /iRacing/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Globals.cs -------------------------------------------------------------------------------- /iRacing/LapRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/LapRecords.cs -------------------------------------------------------------------------------- /iRacing/Models/Cars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Models/Cars.cs -------------------------------------------------------------------------------- /iRacing/Models/PitOpponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Models/PitOpponents.cs -------------------------------------------------------------------------------- /iRacing/Models/Tracks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Models/Tracks.cs -------------------------------------------------------------------------------- /iRacing/PitCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/PitCommands.cs -------------------------------------------------------------------------------- /iRacing/Tires.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/Tires.cs -------------------------------------------------------------------------------- /iRacing/TrackInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/TrackInfos.cs -------------------------------------------------------------------------------- /iRacing/iRacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/iRacing.cs -------------------------------------------------------------------------------- /iRacing/iRacingSpotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/iRacing/iRacingSpotter.cs -------------------------------------------------------------------------------- /images/blackLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/images/blackLogo.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/packages.config -------------------------------------------------------------------------------- /requirements.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasdahl1987/DahlDesignProperties/HEAD/requirements.cmd --------------------------------------------------------------------------------