forked from Code-Artist/AGauge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from nutdotnet/cicd
NuGet Package and first (pre)release.
- Loading branch information
Showing
6 changed files
with
45 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package > | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<!-- Required elements--> | ||
<id>$id$</id> | ||
<version>$version$</version> | ||
<title>$title$</title> | ||
<version>2.0.5-prerelease.1</version> | ||
<description>$description$</description> | ||
<authors>$author$</authors> | ||
<readme>docs\README.md</readme> | ||
|
||
<!-- Optional elements --> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<!-- <icon>icon.png</icon> --> | ||
<projectUrl>http://codearteng.blogspot.com</projectUrl> | ||
<description>$description$</description> | ||
<releaseNotes></releaseNotes> | ||
<!-- <icon>AGauge.bmp</icon> --> | ||
<projectUrl>https://github.com/nutdotnet/AGauge</projectUrl> | ||
<releaseNotes>https://github.com/nutdotnet/AGauge/releases</releaseNotes> | ||
<copyright>$copyright$</copyright> | ||
<tags></tags> | ||
<tags>gauge, winforms, control</tags> | ||
<title>$title$</title> | ||
</metadata> | ||
|
||
<files> | ||
<file src="..\README.md" target="docs\" /> | ||
</files> | ||
</package> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
# AGauge | ||
.NET Winforms Gauge Control created based on original work by A.J.Bauer with various improvment. | ||
List of improvement done on top of the original works is described in my page below:<br/> | ||
http://www.codearteng.com/2012/08/agauge-winforms-gauge-control.html | ||
# AGauge Classic | ||
![Screenshot of the original AGauge demo form by A. J. Bauer](https://raw.githubusercontent.com/nutdotnet/AGauge/main/AGaugeApp/screenshot.bmp) | ||
|
||
The latest binary package had been published to NuGet Package Gallery named "AGauge V2".<br/> | ||
https://www.nuget.org/packages/AGauge_V2/2.0.2 | ||
A customizable, inheritable .Net Framework WinForms Control based on the [initial tutorial](https://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge) by A.J.Bauer, and additional enhancements by [Code Artist](http://www.codearteng.com/2012/08/agauge-winforms-gauge-control.html) and others. This project is being further maintained by the NUTDotNet organization to support [WinNUT](https://github.com/nutdotnet/WinNUT-Client/) and hopefully others who wish to continue using this control. This project is intended to be kept going with bug fixes and no major changes are planned. For a newer iteration of AGauge, take a look at Code Artist's [WinForm Gauge](https://winformgauge.codearteng.com/). | ||
|
||
## Enhancements | ||
- Dynamic Gauge Label and Gauge Range | ||
- NeedleType Enumeration | ||
- ValueChangedEvent | ||
|
||
#Package and Download | ||
- NuGet: [AGauge.Classic](https://www.nuget.org/packages/AGauge.Classic) | ||
|
||
See the Releases page for additional distributions. |