Skip to content

Commit

Permalink
Merge pull request #1 from ClydeDz/dev/v0.0.3
Browse files Browse the repository at this point in the history
Merge from dev/v0.0.3
  • Loading branch information
ClydeDz authored Nov 30, 2018
2 parents 79c3f89 + 24db2f7 commit 05fdbbc
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 20 deletions.
27 changes: 17 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
# Horoscope NuGet
A .NET library for Zodiac signs. Get details on each Zodiac sign, pass a date and know which Zodiac sign it falls in or get a list of all Zodiac signs. Currently in beta.

A .NET library for zodiac signs. Get details on each zodiac sign, pass a date and know which zodiac sign it falls in or get a list of all zodiac signs. Now includes Chinese zodiac signs and elements!
[![NuGet](https://img.shields.io/nuget/v/Horoscope.svg)](https://www.nuget.org/packages/Horoscope/)

## Usage
Install using package manager.
## How to use
#### Installation
Library can be installed with [Nuget](https://www.nuget.org/packages/Horoscope/).
```PowerShell
PM> Install-Package Horoscope
```
Install-Package Horoscope -Version 0.0.2
```

#### Usage
Include the namespace in your program.
```
```C#
using Horoscope;
```

Then go ahead and consume it.
```
```C#
var zodiacSign = Zodiac.GetZodiacSignForDate(new DateTime(1950, 2, 12));
```


#### More examples
[Horoscope.Zodiac](https://github.com/ClydeDz/horoscope-nuget/blob/master/Src/Horoscope.TestConsole/ZodiacExamples.cs)
[Horoscope.ChineseZodiac](https://github.com/ClydeDz/horoscope-nuget/blob/master/Src/Horoscope.TestConsole/ChineseZodiacExamples.cs)


## Release notes
Find release notes [here](https://github.com/ClydeDz/horoscope-nuget/wiki#release-notes).

## Credits
(c) 2018 [Clyde D'Souza](https://clydedsouza.net)
Expand Down
7 changes: 7 additions & 0 deletions Src/Horoscope.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Horoscope.TestConsole", "Ho
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Horoscope.Tests", "Horoscope.Tests\Horoscope.Tests.csproj", "{23BC995E-393A-4E74-B74F-89FB54D2E885}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution items", "Solution items", "{DF07DAC1-0499-4D6D-8B51-36F4A623C99D}"
ProjectSection(SolutionItems) = preProject
..\Icon.png = ..\Icon.png
..\LICENSE = ..\LICENSE
..\README.md = ..\README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
19 changes: 9 additions & 10 deletions Src/Horoscope/Horoscope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,19 @@
<Authors>Clyde D'Souza</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>Horoscope</PackageId>
<Version>0.0.2</Version>
<Version>0.0.3</Version>
<Company />
<PackageLicenseUrl>https://github.com/ClydeDz/horoscope-nuget/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/ClydeDz/horoscope-nuget</RepositoryUrl>
<PackageProjectUrl>https://github.com/ClydeDz/horoscope-nuget/wiki</PackageProjectUrl>
<PackageTags>horoscope zodiac development library zodiac-signs</PackageTags>
<Description>A .NET library for Zodiac signs. Get details on each Zodiac sign, pass a date and know which Zodiac sign it falls in or get a list of all Zodiac signs. Currently in beta.</Description>
<Copyright>(c) 2018 Clyde D'Souza</Copyright>
<PackageReleaseNotes>0.0.2
Includes basic functionality to get Zodiac signs.
0.0.1
Beta release.</PackageReleaseNotes>
<AssemblyVersion>0.0.0.2</AssemblyVersion>
<FileVersion>0.0.0.2</FileVersion>
<PackageTags>horoscope zodiac development library zodiac-signs chinese-zodiac chinese-horoscope yinyang chinese-elements yin-yang</PackageTags>
<Description>A .NET library for zodiac signs. Get details on each zodiac sign, pass a date and know which zodiac sign it falls in or get a list of all zodiac signs. Now includes Chinese zodiac signs and elements!</Description>
<Copyright>Copyright (c) 2018 Clyde D'Souza</Copyright>
<PackageReleaseNotes>Now includes Chinese zodiac signs, fixed elements (i.e., wood, fire, earth, metal, water) and yin yang associated with each Chinese zodiac sign.

More release notes here: https://github.com/ClydeDz/horoscope-nuget/wiki#release-notes</PackageReleaseNotes>
<AssemblyVersion>0.0.0.3</AssemblyVersion>
<FileVersion>0.0.0.3</FileVersion>
<PackageIconUrl>https://raw.githubusercontent.com/ClydeDz/horoscope-nuget/master/Icon.png</PackageIconUrl>
</PropertyGroup>

Expand Down

0 comments on commit 05fdbbc

Please sign in to comment.