Skip to content

Commit

Permalink
Actualización (#3)
Browse files Browse the repository at this point in the history
* Add Esperanto support to NumberToWords. Fixes Humanizr#558

* Fixed incorrect locale in readme

For example on `ToOrdinalWords` the Arabic example was incorrectly listed as 'Brazilian Portuguese'

* Pass through the content of the "Letter, other" Unicode category.

fixes Humanizr#578

* Fix misspelling

Fixed misspelling of "Uper" to "Upper".

* added translation for DateHumanize_Now

* update for latest gv config

* Add resource validation for DefaultFormatter to prevent  "Value cannot be null." exception on the .NET format.

* Fix missing format value for the argument exception.

* Validate resource key before using .FormatWith extension.

* Use string interpolation beside string format.

* Add summary for DefaultFormatter.

* temp disable gitlink

* Fix CONTRIBUTING.md of broken links.

* Squashed commit of the following:

commit f9423de
Author: hangy <hangy@hangy.de>
Date:   Thu Dec 1 20:48:01 2016 +0100

    Update TimeSpanHumanizeTests.cs

commit 2e5dfe5
Author: hangy <hangy@hangy.de>
Date:   Thu Dec 1 20:37:50 2016 +0100

    Apparently I'm stupid and 7 days actually get humanized as 1 week.

commit 152a119
Author: hangy <hangy@hangy.de>
Date:   Wed Nov 30 23:50:51 2016 +0100

    Workaround for unneeded suffix: Just use the same value.

    The reason for this workaround is that at the method that decides if the suffix should be applied, the information about the time unit is not available. So it would either need to do some string magic and explicitly exclude the "TimeSpanHumanize_MultipleDays" resource key from adding the postfix, or most of the `TimeSpan` formatting code would need to be rewriten for Croatian or modified for all languages to support Croatian. Neither seems reasonable for a quick change.

commit 002cc7b
Author: hangy <hangy@hangy.de>
Date:   Wed Nov 30 23:12:57 2016 +0100

    Added some more tests. From what I've read, all days should resolve to "dana" for the Croatian language. (No "_DualTrialQuadral" postfix.")

commit c190e9d
Author: hangy <hangy@hangy.de>
Date:   Tue Nov 22 00:29:51 2016 +0100

    Add initial test for issue 597.

* fix cmd build

* update packages

* Revert "Add Esperanto support to NumberToWords. Fixes Humanizr#558"

* Add Authenticode signing to binaries

* install signclient package

* Register Portuguese TimeSpan localisation as "pt".

According to Humanizr#601, the localisation is good for
Portuguese in general, not just for Brazilian Portuguese.
I copied the unit test, so that we can prove that there's no regression.

Additionally, I copied the `OrginalizeTests`, because those were
already registered as "pt", not "pt-BR".

Note that `NumberToWords` is still only valid for pt-BR unless confirmed
otherwise.

* Syntax correction in readme.md

Very minor correction to the syntax. Named parameters require a :, not a =. 

(I found this when I copy/pasted the code and it didn't work without changes)

* Added test to reproduce issue

* Handles issue without try-catch

Utilize null-checks to verify there is a description in the enums
display attribute

* Added whitespace before if-statement

Added a whitespace before if-statement

* adding parameter decimals toMetric(). See issue Humanizr#609

* Added Sweedish collection formatter

* issue 611: added the method Kebaberize

* removed a comment and an empty char

* Update readme.md

* Update to VS 2017

* remove file from root

* gv

* update CS url

* appveyor

* clean code a bit

I am not sure about the line 12. I think the difference between both is more clear like this.

* Revert "clean code a bit"

This reverts commit eb110e5.

* IsDefined is prefered

`IsDefined` won't loop through all the attributes.
Just saying, didn't bench it.

* Latvian localization

Thanks to Līva Miltuze for help with translation.

* Create Humanizer.Core.lv.nuspec

* Update Humanizer.sln

* Update Humanizer.old.csproj

* Implemented TimeSpan Humanize extension method for TimeUnit.Month and TimeUnit.Year with translations.

* Readme updated.

* Changes in csproj reverted.

* Test for uniqueness of day sequences added.

* Include LV in main package

* remove old project file

* Build script updates

* Add sourcelink

* fix sign client syntax

* Add support for long to ToQuantity

* Update Number to words to take a long

* Add long.ToQuantity(ShowQuantityAs.Words)

* Add extra public method for int and long

* Update public_api_approved.txt

* Add tests for long.ToWords() and update XML comment

* Removing out of range test, correcting names of large numbers

* update to long

* fix merge

* Add ToOrdinalWords extension with gender overload

* Use localisation for ToOrdinalWords to allow for localised implementation and add readme section

* Update XML docs for DateToOrdinalWords

* VS...grr.

* pdb is embedded now

* Incorporated review comments by @khellang, @M-Zuber, @jeremymeng. Marked reviewed language with "Native speaker". Marked 'sv' as reviewed even confirmation is pending.

* Marked confirmed translations with "Native speaker".

* Update xUnit and fix test overload issue

* Added greek language resources as per #pr632

* v2.2 release notes

* Update package
  • Loading branch information
og-silvaa authored Sep 12, 2017
1 parent ac40ee2 commit f8ccb7b
Show file tree
Hide file tree
Showing 208 changed files with 4,021 additions and 2,308 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ Check out [Dutch](https://github.com/Humanizr/Humanizer/blob/master/src/Humanize
[Russian](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer/Localisation/NumberToWords/RussianNumberToWordsConverter.cs) localisations for examples of how you can write a Converter for your language.
You should then register your converter in the [ConverterFactory](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer/NumberToWordsExtension.cs#L13) for it to kick in on your locale.

Don't forget to write tests for your localisations. Check out the existing [DateHumanizeTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs), [TimeSpanHumanizeTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs) and [NumberToWordsTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs).
Don't forget to write tests for your localisations. Check out the existing [DateHumanizeTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests.Shared/Localisation/ru-RU/DateHumanizeTests.cs), [TimeSpanHumanizeTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests.Shared/Localisation/ru-RU/TimeSpanHumanizeTests.cs) and [NumberToWordsTests](https://github.com/Humanizr/Humanizer/blob/master/src/Humanizer.Tests.Shared/Localisation/ru-RU/NumberToWordsTests.cs).
20 changes: 6 additions & 14 deletions GitVersionConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
assembly-versioning-scheme: MajorMinorPatch
mode: ContinuousDelivery
tag-prefix: '[vV]'
continuous-delivery-fallback-tag: ci
next-version: 2.0.0
Expand All @@ -11,44 +10,37 @@ build-metadata-padding: 4
commit-message-incrementing: Enabled
branches:
master:
mode: ContinuousDelivery
tag:
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
releases?[/-]:
mode: ContinuousDelivery
release:
tag: beta
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
features?[/-]:
mode: ContinuousDelivery
feature:
tag: useBranchName
increment: Inherit
prevent-increment-of-merged-branch-version: false
track-merge-target: false
(pull|pull\-requests|pr)[/-]:
mode: ContinuousDelivery
pull-request:
tag: PullRequest
increment: Inherit
prevent-increment-of-merged-branch-version: false
tag-number-pattern: '[/-](?<number>\d+)[-/]'
track-merge-target: false
hotfix(es)?[/-]:
mode: ContinuousDelivery
hotfix:
tag: beta
increment: Patch
prevent-increment-of-merged-branch-version: false
track-merge-target: false
support[/-]:
mode: ContinuousDelivery
support:
tag:
increment: Patch
prevent-increment-of-merged-branch-version: true
track-merge-target: false
dev(elop)?(ment)?$:
mode: ContinuousDelivery
develop:
tag: beta
increment: Minor
prevent-increment-of-merged-branch-version: false
Expand Down
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.af.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\af\*.*" target="lib\netstandard1.0\af" />
<file src="Humanizer\bin\Release\netstandard1.0\af\*.*" target="lib\netstandard1.0\af" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.ar.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\ar\*.*" target="lib\netstandard1.0\ar" />
<file src="Humanizer\bin\Release\netstandard1.0\ar\*.*" target="lib\netstandard1.0\ar" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.bg.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\bg\*.*" target="lib\netstandard1.0\bg" />
<file src="Humanizer\bin\Release\netstandard1.0\bg\*.*" target="lib\netstandard1.0\bg" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.bn-BD.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\bn-BD\*.*" target="lib\netstandard1.0\bn-BD" />
<file src="Humanizer\bin\Release\netstandard1.0\bn-BD\*.*" target="lib\netstandard1.0\bn-BD" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.cs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\cs\*.*" target="lib\netstandard1.0\cs" />
<file src="Humanizer\bin\Release\netstandard1.0\cs\*.*" target="lib\netstandard1.0\cs" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.da.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\da\*.*" target="lib\netstandard1.0\da" />
<file src="Humanizer\bin\Release\netstandard1.0\da\*.*" target="lib\netstandard1.0\da" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.de.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\de\*.*" target="lib\netstandard1.0\de" />
<file src="Humanizer\bin\Release\netstandard1.0\de\*.*" target="lib\netstandard1.0\de" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.el.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\el\*.*" target="lib\netstandard1.0\el" />
<file src="Humanizer\bin\Release\netstandard1.0\el\*.*" target="lib\netstandard1.0\el" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.es.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\es\*.*" target="lib\netstandard1.0\es" />
<file src="Humanizer\bin\Release\netstandard1.0\es\*.*" target="lib\netstandard1.0\es" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.fa.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\fa\*.*" target="lib\netstandard1.0\fa" />
<file src="Humanizer\bin\Release\netstandard1.0\fa\*.*" target="lib\netstandard1.0\fa" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.fi-FI.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\fi-FI\*.*" target="lib\netstandard1.0\fi-FI" />
<file src="Humanizer\bin\Release\netstandard1.0\fi-FI\*.*" target="lib\netstandard1.0\fi-FI" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.fr-BE.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\fr-BE\*.*" target="lib\netstandard1.0\fr-BE" />
<file src="Humanizer\bin\Release\netstandard1.0\fr-BE\*.*" target="lib\netstandard1.0\fr-BE" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.fr.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\fr\*.*" target="lib\netstandard1.0\fr" />
<file src="Humanizer\bin\Release\netstandard1.0\fr\*.*" target="lib\netstandard1.0\fr" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.he.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\he\*.*" target="lib\netstandard1.0\he" />
<file src="Humanizer\bin\Release\netstandard1.0\he\*.*" target="lib\netstandard1.0\he" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.hr.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\hr\*.*" target="lib\netstandard1.0\hr" />
<file src="Humanizer\bin\Release\netstandard1.0\hr\*.*" target="lib\netstandard1.0\hr" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.hu.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\hu\*.*" target="lib\netstandard1.0\hu" />
<file src="Humanizer\bin\Release\netstandard1.0\hu\*.*" target="lib\netstandard1.0\hu" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.id.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\id\*.*" target="lib\netstandard1.0\id" />
<file src="Humanizer\bin\Release\netstandard1.0\id\*.*" target="lib\netstandard1.0\id" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.it.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\it\*.*" target="lib\netstandard1.0\it" />
<file src="Humanizer\bin\Release\netstandard1.0\it\*.*" target="lib\netstandard1.0\it" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.ja.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\ja\*.*" target="lib\netstandard1.0\ja" />
<file src="Humanizer\bin\Release\netstandard1.0\ja\*.*" target="lib\netstandard1.0\ja" />
</files>
</package>
23 changes: 23 additions & 0 deletions NuSpecs/Humanizer.Core.lv.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata minClientVersion="2.12">
<id>Humanizer.Core.lv</id>
<version>$version$</version>
<title>Humanizer Locale (lv)</title>
<authors>Mehdi Khalili, Oren Novotny</authors>
<owners>Mehdi Khalili, onovotny</owners>
<projectUrl>https://github.com/Humanizr/Humanizer</projectUrl>
<iconUrl>https://raw.github.com/Humanizr/Humanizer/master/logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Humanizer Locale (lv)</description>
<copyright>Copyright 2012-2015 Mehdi Khalili</copyright>
<licenseUrl>https://raw.githubusercontent.com/Humanizr/Humanizer/master/LICENSE</licenseUrl>
<language>lv</language>
<dependencies>
<dependency id="Humanizer.Core" version="[$version$]" />
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\netstandard1.0\lv\*.*" target="lib\netstandard1.0\lv" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.nb-NO.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\nb-NO\*.*" target="lib\netstandard1.0\nb-NO" />
<file src="Humanizer\bin\Release\netstandard1.0\nb-NO\*.*" target="lib\netstandard1.0\nb-NO" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.nb.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\nb\*.*" target="lib\netstandard1.0\nb" />
<file src="Humanizer\bin\Release\netstandard1.0\nb\*.*" target="lib\netstandard1.0\nb" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.nl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\nl\*.*" target="lib\netstandard1.0\nl" />
<file src="Humanizer\bin\Release\netstandard1.0\nl\*.*" target="lib\netstandard1.0\nl" />
</files>
</package>
4 changes: 2 additions & 2 deletions NuSpecs/Humanizer.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<dependencies>
<group targetFramework="portable-net45+win8+wpa81+wp8" />
<group targetFramework="netstandard1.0">
<dependency id="NETStandard.Library" version="1.6.0" />
<dependency id="NETStandard.Library" version="1.6.1" />
</group>
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\*.*" exclude="**\*.srcsrv;**\*.CodeAnalysisLog.xml;**\*.lastcodeanalysissucceeded" target="lib\netstandard1.0" />
<file src="Humanizer\bin\Release\netstandard1.0\*.dll" target="lib\netstandard1.0" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.pl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\pl\*.*" target="lib\netstandard1.0\pl" />
<file src="Humanizer\bin\Release\netstandard1.0\pl\*.*" target="lib\netstandard1.0\pl" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.pt.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\pt\*.*" target="lib\netstandard1.0\pt" />
<file src="Humanizer\bin\Release\netstandard1.0\pt\*.*" target="lib\netstandard1.0\pt" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.ro.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\ro\*.*" target="lib\netstandard1.0\ro" />
<file src="Humanizer\bin\Release\netstandard1.0\ro\*.*" target="lib\netstandard1.0\ro" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.ru.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\ru\*.*" target="lib\netstandard1.0\ru" />
<file src="Humanizer\bin\Release\netstandard1.0\ru\*.*" target="lib\netstandard1.0\ru" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.sk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\sk\*.*" target="lib\netstandard1.0\sk" />
<file src="Humanizer\bin\Release\netstandard1.0\sk\*.*" target="lib\netstandard1.0\sk" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.sl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\sl\*.*" target="lib\netstandard1.0\sl" />
<file src="Humanizer\bin\Release\netstandard1.0\sl\*.*" target="lib\netstandard1.0\sl" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.sr-Latn.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\sr-Latn\*.*" target="lib\netstandard1.0\sr-Latn" />
<file src="Humanizer\bin\Release\netstandard1.0\sr-Latn\*.*" target="lib\netstandard1.0\sr-Latn" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.sr.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\sr\*.*" target="lib\netstandard1.0\sr" />
<file src="Humanizer\bin\Release\netstandard1.0\sr\*.*" target="lib\netstandard1.0\sr" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.sv.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\sv\*.*" target="lib\netstandard1.0\sv" />
<file src="Humanizer\bin\Release\netstandard1.0\sv\*.*" target="lib\netstandard1.0\sv" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.tr.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\tr\*.*" target="lib\netstandard1.0\tr" />
<file src="Humanizer\bin\Release\netstandard1.0\tr\*.*" target="lib\netstandard1.0\tr" />
</files>
</package>
2 changes: 1 addition & 1 deletion NuSpecs/Humanizer.Core.uk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</dependencies>
</metadata>
<files>
<file src="Humanizer\bin\Release\uk\*.*" target="lib\netstandard1.0\uk" />
<file src="Humanizer\bin\Release\netstandard1.0\uk\*.*" target="lib\netstandard1.0\uk" />
</files>
</package>
Loading

0 comments on commit f8ccb7b

Please sign in to comment.