You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
[](https://ci.appveyor.com/project/anjdreas/unitsnet)[](https://gitter.im/UnitsNet/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2
-
[](https://flattr.com/submit/auto?fid=g37dpx&url=https://github.com/anjdreas/UnitsNet/&title=Units.NET&language=en-US&tags=github&category=software)
1
+
[](https://ci.appveyor.com/project/angularsen/unitsnet)[](https://gitter.im/UnitsNet/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2
+
[](https://flattr.com/submit/auto?fid=g37dpx&url=https://github.com/angularsen/UnitsNet/&title=Units.NET&language=en-US&tags=github&category=software)
3
3
4
4
Units.NET
5
5
===
@@ -13,7 +13,7 @@ Installing
13
13
---
14
14
Run the following command in the [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console) or go to the [NuGet site](https://www.nuget.org/packages/UnitsNet/) for the complete relase history.
*[508 units in 48 unit classes](UnitsNet/GeneratedCode/Enums) generated from [JSON](UnitsNet/UnitDefinitions/) by [Powershell scripts](UnitsNet/Scripts)
26
-
*[Over 1000 unit tests](https://ci.appveyor.com/project/anjdreas/unitsnet) on conversions and localizations
26
+
*[Over 1000 unit tests](https://ci.appveyor.com/project/angularsen/unitsnet) on conversions and localizations
27
27
* Immutable structs that implement IEquatable, IComparable
28
28
*[Static typing](#static-typing) to avoid ambiguous values or units
29
29
*[Operator overloads](#operator-overloads) for arithmetic on quantities
@@ -32,7 +32,7 @@ Overview
32
32
*[Example: Creating a unit converter app](#example-app)
33
33
*[Precision and accuracy](#precision)
34
34
*[Serializable with JSON.NET](#serialization)
35
-
* Extensible with [custom units](https://github.com/anjdreas/UnitsNet/wiki/Extending-with-Custom-Units)
35
+
* Extensible with [custom units](https://github.com/angularsen/UnitsNet/wiki/Extending-with-Custom-Units)
36
36
*[Contribute](#contribute) if you are missing some units
37
37
*[Continuous integration](#ci) posts status reports to pull requests and commits
<aname="example-app"></a>Example: Creating a unit converter app
122
122
---
123
-
*TODO: Add actual sample app and link to it here with screenshot. See [#274](https://github.com/anjdreas/UnitsNet/issues/274) for details.*
123
+
*TODO: Add actual sample app and link to it here with screenshot. See [#274](https://github.com/angularsen/UnitsNet/issues/274) for details.*
124
124
125
125
This example shows how you can create a dynamic unit converter, where the user selects the quantity to convert, such as `Length` or `Mass`, then selects to convert from `Meter` to `Centimeter` and types in a value for how many meters.
126
126
@@ -144,12 +144,12 @@ Units.NET was intended for convenience and ease of use, not highly accurate conv
144
144
145
145
The tests accept an error up to 1E-5 for most units added so far. Exceptions include units like Teaspoon, where the base unit cubic meter is a lot bigger. In many usecases this is sufficient, but for others this may be a showstopper and something you need to be aware of.
146
146
147
-
For more details, see [Precision](https://github.com/anjdreas/UnitsNet/wiki/Precision).
147
+
For more details, see [Precision](https://github.com/angularsen/UnitsNet/wiki/Precision).
148
148
149
149
150
150
<aname="serialization"></a>Serialization
151
151
---
152
-
*`UnitsNet.Serialization.JsonNet` ([nuget](https://www.nuget.org/packages/UnitsNet.Serialization.JsonNet), [src](https://github.com/anjdreas/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet), [tests](https://github.com/anjdreas/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet.Tests)) for JSON.NET
152
+
*`UnitsNet.Serialization.JsonNet` ([nuget](https://www.nuget.org/packages/UnitsNet.Serialization.JsonNet), [src](https://github.com/angularsen/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet), [tests](https://github.com/angularsen/UnitsNet/tree/master/UnitsNet.Serialization.JsonNet.Tests)) for JSON.NET
153
153
154
154
**Important!**
155
155
We cannot guarantee backwards compatibility, although we will strive to do that on a "best effort" basis and bumping the major nuget version when a change is necessary.
@@ -159,9 +159,9 @@ The base unit of any unit should be be treated as volatile as we have changed th
159
159
160
160
<aname="contribute"></a>Want To Contribute?
161
161
---
162
-
This project is still early and many units and conversions are not yet covered. If you are missing something, please help by contributing or [ask for it](https://github.com/anjdreas/UnitsNet/issues) by creating an issue.
162
+
This project is still early and many units and conversions are not yet covered. If you are missing something, please help by contributing or [ask for it](https://github.com/angularsen/UnitsNet/issues) by creating an issue.
163
163
164
-
Please read the wiki on [Adding a New Unit](https://github.com/anjdreas/UnitsNet/wiki/Adding-a-New-Unit).
164
+
Please read the wiki on [Adding a New Unit](https://github.com/angularsen/UnitsNet/wiki/Adding-a-New-Unit).
165
165
166
166
Generally adding a unit involves adding or modifying `UnitsNet\UnitDefinitions\*.json` files and running `generate-code.bat` to regenerate the source code and test code stubs, then manually implementing the new unit conversion constants in the test code.
167
167
@@ -171,14 +171,14 @@ Generally adding a unit involves adding or modifying `UnitsNet\UnitDefinitions\*
171
171
172
172
<aname="ci"></a>Continuous Integration
173
173
---
174
-
[AppVeyor](https://ci.appveyor.com/project/anjdreas/unitsnet) performs the following:
174
+
[AppVeyor](https://ci.appveyor.com/project/angularsen/unitsnet) performs the following:
175
175
* Build and test all branches
176
176
* Build and test pull requests, notifies on success or error
177
177
* Deploy nugets on master branch, if nuspec versions changed
178
178
179
179
<aname="who-are-using"></a>Who are Using This?
180
180
---
181
-
It would be awesome to know who are using this library. If you would like your project listed here, [create an issue](https://github.com/anjdreas/UnitsNet/issues) or edit the [README.md](https://github.com/anjdreas/UnitsNet/edit/master/README.md) and send a pull request. Max logo size is `300x35 pixels` and should be in `.png`, `.gif` or `.jpg` formats.
181
+
It would be awesome to know who are using this library. If you would like your project listed here, [create an issue](https://github.com/angularsen/UnitsNet/issues) or edit the [README.md](https://github.com/angularsen/UnitsNet/edit/master/README.md) and send a pull request. Max logo size is `300x35 pixels` and should be in `.png`, `.gif` or `.jpg` formats.
0 commit comments