Skip to content

Commit afaea9e

Browse files
authored
Merge pull request #11 from nutdotnet/10-scale-lines
Tick Mark bug, other enhancements
2 parents bb77688 + 0c4f50d commit afaea9e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2603
-5828
lines changed

.github/workflows/build-debug.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Build Project
2626
run: >
27-
dotnet build ${{ env.PRIMARY_FOLDER }}\AGauge.csproj
27+
dotnet build ${{ env.PRIMARY_FOLDER }}\AGaugeClassic.csproj
2828
--nologo
2929
-c Debug
3030
-p:Version=1.0.0.0

.github/workflows/build-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Build Project
2626
run: >
27-
dotnet build ${{ env.PRIMARY_FOLDER }}\AGauge.csproj
27+
dotnet build ${{ env.PRIMARY_FOLDER }}\AGaugeClassic.csproj
2828
--nologo
2929
-c Release
3030
-p:Version=${{ steps.exVer.outputs.ASMVER }}

AGauge.sln

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.9.34728.123
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AGaugeClassic", "AGauge\AGaugeClassic.csproj", "{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AGaugeDemo", "AGaugeDemo\AGaugeDemo.csproj", "{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Debug|x86 = Debug|x86
14+
Release|Any CPU = Release|Any CPU
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Debug|x86.ActiveCfg = Debug|Any CPU
21+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Debug|x86.Build.0 = Debug|Any CPU
22+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Release|x86.ActiveCfg = Release|Any CPU
25+
{3CF36E77-CD6E-428A-89F9-31C8C8E595C7}.Release|x86.Build.0 = Release|Any CPU
26+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Debug|Any CPU.ActiveCfg = Debug|x86
27+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Debug|Any CPU.Build.0 = Debug|x86
28+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Debug|x86.ActiveCfg = Debug|x86
29+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Debug|x86.Build.0 = Debug|x86
30+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Release|Any CPU.ActiveCfg = Release|x86
31+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Release|Any CPU.Build.0 = Release|x86
32+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Release|x86.ActiveCfg = Release|x86
33+
{B5DBBA7D-17B1-4688-AB92-E09208D7D3BB}.Release|x86.Build.0 = Release|x86
34+
EndGlobalSection
35+
GlobalSection(SolutionProperties) = preSolution
36+
HideSolutionNode = FALSE
37+
EndGlobalSection
38+
GlobalSection(ExtensibilityGlobals) = postSolution
39+
SolutionGuid = {6A3561AD-28B8-48FD-B0A9-3B9E887A2091}
40+
EndGlobalSection
41+
EndGlobal

AGauge/AGauge.Designer.cs

+37-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)