Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
cleanup and fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSwerik committed May 7, 2020
1 parent d0b3edd commit 18735b0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
**/bin/
.idea/
**/zips/
assets1/
assets1/
Publish/
12 changes: 6 additions & 6 deletions Inno Config.iss
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ Name: "german"; MessagesFile: "compiler:Languages\German.isl"
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "Publish\bin\64bit\*"; DestDir: "{app}\bin\64bit"; Excludes:"*.pdb;*\config.csv"; Check: Is64BitInstallMode; Flags: ignoreversion recursesubdirs
Source: "Publish\bin\64bit\assets\config.csv"; DestDir: "{autodocs}\RedEye\config.csv"; Check: Is64BitInstallMode; Flags: ignoreversion recursesubdirs
Source: "Publish\bin\*"; DestDir: "{app}\bin"; Excludes:"*.pdb;*\config.csv"; Check: Is64BitInstallMode; Flags: ignoreversion recursesubdirs
Source: "Publish\bin\config.csv"; DestDir: "{autodocs}\RedEye\config.csv"; Check: Is64BitInstallMode; Flags: ignoreversion recursesubdirs

[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\bin\64bit\{#MyAppExeName}"; Flags: createonlyiffileexists;
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\bin\64bit\{#MyAppExeName}"; Tasks: desktopicon; Flags: createonlyiffileexists;
Name: "{app}\{#MyAppName}"; Filename: "{app}\bin\64bit\{#MyAppExeName}"; Flags: createonlyiffileexists;
Name: "{group}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Flags: createonlyiffileexists;
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Tasks: desktopicon; Flags: createonlyiffileexists;
Name: "{app}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Flags: createonlyiffileexists;

[Run]
Filename: "{app}\bin\64bit\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Check: IsWin64; Flags: nowait postinstall skipifsilent
Filename: "{app}\bin\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Check: IsWin64; Flags: nowait postinstall skipifsilent

[UninstallDelete]
Type: filesandordirs; Name: "{autodocs}\RedEye\config.csv"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RedEye ![Build status](https://ci.appveyor.com/api/projects/status/40l1bf7fj0ceeq1u?svg=true)
At first this was a Project for learning ML.NET but I ended up not using it at all because Emgu.CV worked way better and easier.

If you want to try your own images, then place them in the "examples" folder or a subfolder in your installation folder.
If you want to try your own images, then place them in the `examples` folder or a subfolder in your installation folder.

If you want to change any settings, then edit the "config.csv" in your Documents folder under "RedEye".
If you want to change any settings, then edit the `config.csv` in your Documents folder under `RedEye`.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ for:
informational_version: '$(my_version_number)'

after_test:
- ps: dotnet publish "-p:PublishProfile=$($env:project_name)\$($env:project_name).csproj" -c:Release -o:Publish\bin\64bit -v:m -r:win-x64 --self-contained:true -p:PublishSingleFile=false -p:PublishTrimmed=true
- ps: dotnet publish "-p:PublishProfile=$($env:project_name)\$($env:project_name).csproj" -c:Release -o:Publish\bin -v:m -r:win-x64 --self-contained:true -p:PublishSingleFile=false -p:PublishTrimmed=true
- ps: '& "C:\Program Files (x86)\Inno Setup 6\iscc.exe" /qp "Inno Config.iss"'

artifacts:
Expand Down

0 comments on commit 18735b0

Please sign in to comment.