Skip to content

Commit 72b3263

Browse files
authored
Testing (#10)
* Fix for #8 maybe * Reverted Combo Box back to Version 1.5.2, better Error Handling * Added SonarCloud Properties * Github Action is for .Net Core only * Fixed Combo Box Code * Updated SonarCloud/SonarScan .gitignore * Fixed Code Smells * Removed Debug Text * Change Version to 1.6.0.3 for AutoUpdater * Fixed Reference Issues
1 parent 2f0e8cc commit 72b3263

File tree

3 files changed

+23
-87
lines changed

3 files changed

+23
-87
lines changed

ViVeTool-GUI.FeatureScanner/ViVeTool_GUI.FeatureScanner.vbproj

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,6 @@
1515
<MyType>WindowsForms</MyType>
1616
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1717
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
19-
<PlatformTarget>x86</PlatformTarget>
20-
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<DefineDebug>true</DefineDebug>
23-
<DefineTrace>true</DefineTrace>
24-
<OutputPath>bin\Debug\</OutputPath>
25-
<DocumentationFile>ViVeTool_GUI.FeatureScanner.xml</DocumentationFile>
26-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
27-
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
29-
<PlatformTarget>x86</PlatformTarget>
30-
<DebugType>pdbonly</DebugType>
31-
<DefineDebug>false</DefineDebug>
32-
<DefineTrace>true</DefineTrace>
33-
<Optimize>true</Optimize>
34-
<OutputPath>bin\Release\</OutputPath>
35-
<DocumentationFile>ViVeTool_GUI.FeatureScanner.xml</DocumentationFile>
36-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
37-
</PropertyGroup>
3818
<PropertyGroup>
3919
<OptionExplicit>On</OptionExplicit>
4020
</PropertyGroup>
@@ -50,6 +30,9 @@
5030
<PropertyGroup>
5131
<ApplicationManifest>app.manifest</ApplicationManifest>
5232
</PropertyGroup>
33+
<PropertyGroup>
34+
<ApplicationIcon>icons8_portrait_mode_scanning.ico</ApplicationIcon>
35+
</PropertyGroup>
5336
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
5437
<PlatformTarget>x64</PlatformTarget>
5538
<OutputPath>bin\x64\Debug\</OutputPath>
@@ -58,9 +41,6 @@
5841
<PlatformTarget>x64</PlatformTarget>
5942
<OutputPath>bin\x64\Release\</OutputPath>
6043
</PropertyGroup>
61-
<PropertyGroup>
62-
<ApplicationIcon>icons8_portrait_mode_scanning.ico</ApplicationIcon>
63-
</PropertyGroup>
6444
<ItemGroup>
6545
<Reference Include="CrashReporter.NET, Version=1.6.0.0, Culture=neutral, PublicKeyToken=7828e0fd88cab698, processorArchitecture=MSIL">
6646
<HintPath>..\packages\CrashReporter.NET.Official.1.6.0\lib\net462\CrashReporter.NET.dll</HintPath>
@@ -69,15 +49,15 @@
6949
<Reference Include="System.Drawing" />
7050
<Reference Include="System.Windows.Forms" />
7151
<Reference Include="Telerik.WinControls, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
72-
<HintPath>..\lib\RCWF\2021.3.1109.40\Telerik.WinControls.dll</HintPath>
52+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.dll</HintPath>
7353
<Private>True</Private>
7454
</Reference>
7555
<Reference Include="Telerik.WinControls.UI, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
76-
<HintPath>..\lib\RCWF\2021.3.1109.40\Telerik.WinControls.UI.dll</HintPath>
56+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.UI.dll</HintPath>
7757
<Private>True</Private>
7858
</Reference>
7959
<Reference Include="TelerikCommon, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
80-
<HintPath>..\lib\RCWF\2021.3.1109.40\TelerikCommon.dll</HintPath>
60+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\TelerikCommon.dll</HintPath>
8161
<Private>True</Private>
8262
</Reference>
8363
</ItemGroup>

ViVeTool_GUI.sln

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,18 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ViVeTool_GUI.FeatureScanner
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12-
Debug|Any CPU = Debug|Any CPU
1312
Debug|x64 = Debug|x64
14-
Debug|x86 = Debug|x86
15-
Release|Any CPU = Release|Any CPU
1613
Release|x64 = Release|x64
17-
Release|x86 = Release|x86
1814
EndGlobalSection
1915
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|Any CPU.Build.0 = Debug|Any CPU
2216
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|x64.ActiveCfg = Debug|x64
2317
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|x64.Build.0 = Debug|x64
24-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|x86.ActiveCfg = Debug|x86
25-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Debug|x86.Build.0 = Debug|x86
26-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|Any CPU.ActiveCfg = Release|Any CPU
27-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|Any CPU.Build.0 = Release|Any CPU
2818
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|x64.ActiveCfg = Release|x64
2919
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|x64.Build.0 = Release|x64
30-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|x86.ActiveCfg = Release|x86
31-
{7E667325-4E6F-49E0-A7A8-52E4B95FBB4A}.Release|x86.Build.0 = Release|x86
32-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|Any CPU.ActiveCfg = Debug|x86
33-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|Any CPU.Build.0 = Debug|x86
3420
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|x64.ActiveCfg = Debug|x64
3521
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|x64.Build.0 = Debug|x64
36-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|x86.ActiveCfg = Debug|x86
37-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Debug|x86.Build.0 = Debug|x86
38-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|Any CPU.ActiveCfg = Release|x86
39-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|Any CPU.Build.0 = Release|x86
40-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x64.ActiveCfg = Release|x86
41-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x64.Build.0 = Release|x86
42-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x86.ActiveCfg = Release|x86
43-
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x86.Build.0 = Release|x86
22+
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x64.ActiveCfg = Release|x64
23+
{89B985FC-8979-4D33-8986-05B03F9D617A}.Release|x64.Build.0 = Release|x64
4424
EndGlobalSection
4525
GlobalSection(SolutionProperties) = preSolution
4626
HideSolutionNode = FALSE

vivetool-gui/ViVeTool_GUI.vbproj

Lines changed: 15 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,6 @@
1616
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1717
<TargetFrameworkProfile />
1818
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
20-
<PlatformTarget>x86</PlatformTarget>
21-
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
23-
<DefineDebug>true</DefineDebug>
24-
<DefineTrace>true</DefineTrace>
25-
<OutputPath>bin\Debug\</OutputPath>
26-
<DocumentationFile>ViVeTool_GUI.xml</DocumentationFile>
27-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
28-
</PropertyGroup>
29-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
30-
<PlatformTarget>x86</PlatformTarget>
31-
<DebugType>pdbonly</DebugType>
32-
<DefineDebug>false</DefineDebug>
33-
<DefineTrace>true</DefineTrace>
34-
<Optimize>true</Optimize>
35-
<OutputPath>bin\Release\</OutputPath>
36-
<DocumentationFile>ViVeTool_GUI.xml</DocumentationFile>
37-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
38-
</PropertyGroup>
3919
<PropertyGroup>
4020
<OptionExplicit>On</OptionExplicit>
4121
</PropertyGroup>
@@ -51,16 +31,6 @@
5131
<PropertyGroup>
5232
<ApplicationManifest>app.manifest</ApplicationManifest>
5333
</PropertyGroup>
54-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
55-
<PlatformTarget>AnyCPU</PlatformTarget>
56-
<OutputPath>bin\Debug\</OutputPath>
57-
<Prefer32Bit>false</Prefer32Bit>
58-
<Optimize>true</Optimize>
59-
</PropertyGroup>
60-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
61-
<PlatformTarget>AnyCPU</PlatformTarget>
62-
<OutputPath>bin\Release\</OutputPath>
63-
</PropertyGroup>
6434
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
6535
<PlatformTarget>x64</PlatformTarget>
6636
<OutputPath>bin\x64\Debug\</OutputPath>
@@ -89,21 +59,27 @@
8959
<Reference Include="System.Drawing" />
9060
<Reference Include="System.Windows.Forms" />
9161
<Reference Include="Telerik.WinControls, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
92-
<HintPath>C:\Program Files (x86)\Progress\Telerik UI for WinForms R3 2021\Bin40\Telerik.WinControls.dll</HintPath>
93-
<Private>True</Private>
94-
</Reference>
95-
<Reference Include="Telerik.WinControls.GridView, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
96-
<HintPath>C:\Program Files (x86)\Progress\Telerik UI for WinForms R3 2021\Bin40\Telerik.WinControls.GridView.dll</HintPath>
62+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.dll</HintPath>
9763
<Private>True</Private>
9864
</Reference>
99-
<Reference Include="Telerik.WinControls.Themes.Fluent, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL" />
100-
<Reference Include="Telerik.WinControls.Themes.FluentDark, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL" />
10165
<Reference Include="Telerik.WinControls.UI, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
102-
<HintPath>C:\Program Files (x86)\Progress\Telerik UI for WinForms R3 2021\Bin40\Telerik.WinControls.UI.dll</HintPath>
66+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.UI.dll</HintPath>
10367
<Private>True</Private>
10468
</Reference>
10569
<Reference Include="TelerikCommon, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
106-
<HintPath>C:\Program Files (x86)\Progress\Telerik UI for WinForms R3 2021\Bin40\TelerikCommon.dll</HintPath>
70+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\TelerikCommon.dll</HintPath>
71+
<Private>True</Private>
72+
</Reference>
73+
<Reference Include="Telerik.WinControls.GridView, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
74+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.GridView.dll</HintPath>
75+
<Private>True</Private>
76+
</Reference>
77+
<Reference Include="Telerik.WinControls.Themes.Fluent, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
78+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.Themes.Fluent.dll</HintPath>
79+
<Private>True</Private>
80+
</Reference>
81+
<Reference Include="Telerik.WinControls.Themes.FluentDark, Version=2021.3.1109.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e, processorArchitecture=MSIL">
82+
<HintPath>$(SolutionDir)\lib\RCWF\2021.3.1109.40\Telerik.WinControls.Themes.FluentDark.dll</HintPath>
10783
<Private>True</Private>
10884
</Reference>
10985
</ItemGroup>

0 commit comments

Comments
 (0)