Skip to content

Commit 78481d8

Browse files
Gareth RGareth R
authored andcommitted
Fix default output location, add screenshot to readme
1 parent e7d8c07 commit 78481d8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Checks are read from a simple text file called checklist.txt, one item to a line
33
C style single line comments are supported.
44
The !Launch program directive will display a button to launch program.
55
The return key will advance to the next item. Any other key will focus the notes field.
6+
!(https://github.com/downloads/blutack/checkov/screenshot.png)

checkov.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,28 @@
88
<ProjectGuid>{30B25035-B587-4F4A-A76B-04CC96421E0B}</ProjectGuid>
99
<OutputType>WinExe</OutputType>
1010
<RootNamespace>checkov</RootNamespace>
11-
<AssemblyName>checkov</AssemblyName>
1211
</PropertyGroup>
1312
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
1413
<DebugSymbols>true</DebugSymbols>
1514
<DebugType>full</DebugType>
1615
<Optimize>false</Optimize>
17-
<OutputPath>bin\Debug</OutputPath>
16+
<OutputPath>bin</OutputPath>
1817
<DefineConstants>DEBUG;</DefineConstants>
1918
<ErrorReport>prompt</ErrorReport>
2019
<WarningLevel>4</WarningLevel>
2120
<PlatformTarget>x86</PlatformTarget>
2221
<ConsolePause>false</ConsolePause>
22+
<AssemblyName>checkov-dbg</AssemblyName>
2323
</PropertyGroup>
2424
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
2525
<DebugType>none</DebugType>
2626
<Optimize>false</Optimize>
27-
<OutputPath>bin\Release</OutputPath>
27+
<OutputPath>bin</OutputPath>
2828
<ErrorReport>prompt</ErrorReport>
2929
<WarningLevel>4</WarningLevel>
3030
<PlatformTarget>x86</PlatformTarget>
3131
<ConsolePause>false</ConsolePause>
32+
<AssemblyName>checkov</AssemblyName>
3233
</PropertyGroup>
3334
<ItemGroup>
3435
<Reference Include="System" />

gtk-gui/CheckovUI.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ public partial class CheckovUI
2020
protected virtual void Build ()
2121
{
2222
global::Stetic.Gui.Initialize (this);
23-
// Widget MainWindow
24-
this.Name = "MainWindow";
23+
// Widget CheckovUI
24+
this.Name = "CheckovUI";
2525
this.Title = "CheckList";
2626
this.WindowPosition = ((global::Gtk.WindowPosition)(4));
27-
// Container child MainWindow.Gtk.Container+ContainerChild
27+
// Container child CheckovUI.Gtk.Container+ContainerChild
2828
this.notebook1 = new global::Gtk.Notebook ();
2929
this.notebook1.CanFocus = true;
3030
this.notebook1.Name = "notebook1";

gtk-gui/gui.stetic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</configuration>
77
<import>
88
<widget-library name="glade-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
9-
<widget-library name="../bin/Debug/checkov.exe" internal="true" />
9+
<widget-library name="../bin/checkov-dbg.exe" internal="true" />
1010
</import>
1111
<widget class="Gtk.Window" id="CheckovUI" design-size="455 300">
1212
<property name="MemberName" />

0 commit comments

Comments
 (0)