Skip to content

Commit 2c20209

Browse files
committed
Update links to new github username
It was changed from 'anjdreas' to 'angularsen'.
1 parent cc0a490 commit 2c20209

File tree

315 files changed

+803
-803
lines changed

Some content is hidden

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

315 files changed

+803
-803
lines changed

Docs/UnitsNet.NuGet-README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Stop littering your code with unnecessary calculations, Units.NET gives you all
1313
### Overview
1414

1515
* [50+ quantities with a total of 500+ units](UnitsNet/GeneratedCode/Enums) generated from [JSON](UnitsNet/UnitDefinitions/) by [Powershell scripts](UnitsNet/Scripts/GenerateUnits.ps1)
16-
* [1000+ unit tests](https://ci.appveyor.com/project/anjdreas/unitsnet) on conversions and localizations
16+
* [1000+ unit tests](https://ci.appveyor.com/project/angularsen/unitsnet) on conversions and localizations
1717
* Quantities as immutable structs that implement `IEquatable`, `IComparable`
1818
* [Static typing](#static-typing) to avoid ambiguous quantities or units
1919
* [Operator overloads](#operator-overloads) for arithmetic on quantities
@@ -22,7 +22,7 @@ Stop littering your code with unnecessary calculations, Units.NET gives you all
2222
* [Example: Creating a unit converter app](#example-app)
2323
* [Precision and accuracy](#precision)
2424
* [Serializable with JSON.NET](#serialization)
25-
* Extensible with [custom units](https://github.com/anjdreas/UnitsNet/wiki/Extending-with-Custom-Units)
25+
* Extensible with [custom units](https://github.com/angularsen/UnitsNet/wiki/Extending-with-Custom-Units)
2626
* [Contribute](#contribute) if you are missing some units
2727
* [Continuous integration](#ci) posts status reports to pull requests and commits
2828
* [Who are using this?](#who-are-using)

UnitsNet.Serialization.JsonNet.Tests/UnitsNetJsonConverterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Serialization.JsonNet/UnitsNet.Serialization.JsonNet.Common.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<Title>Units.NET Serialization with Json.NET</Title>
99
<Description>A helper library for serializing and deserializing types in Units.NET using Json.NET.</Description>
1010
<Copyright>Copyright (c) 2015 Andreas Gullberg Larsen</Copyright>
11-
<PackageIconUrl>https://raw.githubusercontent.com/anjdreas/UnitsNet/ce85185429be345d77eb2ce09c99d59cc9ab8aed/Docs/Images/logo-32.png</PackageIconUrl>
12-
<PackageProjectUrl>https://github.com/anjdreas/UnitsNet</PackageProjectUrl>
13-
<PackageLicenseUrl>https://github.com/anjdreas/UnitsNet/blob/master/LICENSE</PackageLicenseUrl>
11+
<PackageIconUrl>https://raw.githubusercontent.com/angularsen/UnitsNet/ce85185429be345d77eb2ce09c99d59cc9ab8aed/Docs/Images/logo-32.png</PackageIconUrl>
12+
<PackageProjectUrl>https://github.com/angularsen/UnitsNet</PackageProjectUrl>
13+
<PackageLicenseUrl>https://github.com/angularsen/UnitsNet/blob/master/LICENSE</PackageLicenseUrl>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<PackageTags>unit units measurement json Json.NET Newtonsoft serialize deserialize serialization deserialization</PackageTags>
1616
<BaseIntermediateOutputPath>obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>

UnitsNet.Serialization.JsonNet/UnitsNetJsonConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/AccelerationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/AmplitudeRatioTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/AngleTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/ApparentPowerTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// in this derived class, reminding the developer to implement the test case
1010
// for the new unit.
1111
//
12-
// See https://github.com/anjdreas/UnitsNet/wiki/Adding-a-New-Unit for how to add or edit units.
12+
// See https://github.com/angularsen/UnitsNet/wiki/Adding-a-New-Unit for how to add or edit units.
1313
//
1414
// Add CustomCode\UnitClasses\MyUnit.extra.cs files to add code to generated unit classes.
1515
// Add Extensions\MyUnitExtensions.cs to decorate unit classes with new behavior.
@@ -18,8 +18,8 @@
1818
// </auto-generated>
1919
//------------------------------------------------------------------------------
2020

21-
// Copyright (c) 2007 Andreas Gullberg Larsen (anjdreas@gmail.com).
22-
// https://github.com/anjdreas/UnitsNet
21+
// Copyright (c) 2007 Andreas Gullberg Larsen (angularsen@gmail.com).
22+
// https://github.com/angularsen/UnitsNet
2323
//
2424
// Permission is hereby granted, free of charge, to any person obtaining a copy
2525
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/AreaMomentOfInertiaTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// in this derived class, reminding the developer to implement the test case
1010
// for the new unit.
1111
//
12-
// See https://github.com/anjdreas/UnitsNet/wiki/Adding-a-New-Unit for how to add or edit units.
12+
// See https://github.com/angularsen/UnitsNet/wiki/Adding-a-New-Unit for how to add or edit units.
1313
//
1414
// Add CustomCode\UnitClasses\MyUnit.extra.cs files to add code to generated unit classes.
1515
// Add Extensions\MyUnitExtensions.cs to decorate unit classes with new behavior.
@@ -18,8 +18,8 @@
1818
// </auto-generated>
1919
//------------------------------------------------------------------------------
2020

21-
// Copyright (c) 2007 Andreas Gullberg Larsen (anjdreas@gmail.com).
22-
// https://github.com/anjdreas/UnitsNet
21+
// Copyright (c) 2007 Andreas Gullberg Larsen (angularsen@gmail.com).
22+
// https://github.com/angularsen/UnitsNet
2323
//
2424
// Permission is hereby granted, free of charge, to any person obtaining a copy
2525
// of this software and associated documentation files (the "Software"), to deal

UnitsNet.Tests/CustomCode/AreaTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright(c) 2007 Andreas Gullberg Larsen
2-
// https://github.com/anjdreas/UnitsNet
2+
// https://github.com/angularsen/UnitsNet
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)