Skip to content

Commit

Permalink
nuget package 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FolkerKinzel committed Jan 16, 2022
1 parent 855c741 commit 44ffd3d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
8 changes: 8 additions & 0 deletions docs/PackageReleaseNotes/1.4.1/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# FolkerKinzel.Contacts.IO 1.4.1
## Package Release Notes

- Dependency update.

.

- [Version History](https://github.com/FolkerKinzel/Contacts.IO/releases)
2 changes: 1 addition & 1 deletion src/FolkerKinzel.Contacts.IO.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\.github\ISSUE_TEMPLATE\feature_request.md = ..\.github\ISSUE_TEMPLATE\feature_request.md
..\README.md = ..\README.md
Reference.md = Reference.md
..\docs\PackageReleaseNotes\1.4.0\ReleaseNotes.md = ..\docs\PackageReleaseNotes\1.4.0\ReleaseNotes.md
..\docs\PackageReleaseNotes\1.4.1\ReleaseNotes.md = ..\docs\PackageReleaseNotes\1.4.1\ReleaseNotes.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Examples", "Examples\Examples.csproj", "{0FFF2EE7-982A-4C84-9375-AEFC0898A2AC}"
Expand Down
17 changes: 13 additions & 4 deletions src/FolkerKinzel.Contacts.IO/FolkerKinzel.Contacts.IO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<!-- nuget-Package: -->
<PackageId>FolkerKinzel.Contacts.IO</PackageId>
<Product>FolkerKinzel.Contacts.IO</Product>
<Version>1.4.0</Version>
<FileVersion>1.4.0.11</FileVersion>
<Version>1.4.1</Version>
<FileVersion>1.4.1.7</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageReleaseNotes>https://github.com/FolkerKinzel/Contacts.IO/blob/master/docs/PackageReleaseNotes/1.4.0/ReleaseNotes.md</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/FolkerKinzel/Contacts.IO/blob/master/docs/PackageReleaseNotes/1.4.1/ReleaseNotes.md</PackageReleaseNotes>
<PackageTags>.net vcf csv vcard contact c#</PackageTags>
<Description>Small and easy to use framework for .NET to manage contact data of organizations and natural persons, including a data model and classes to persist it as vCard (*.vcf) or CSV.</Description>
<Authors>Folker Kinzel</Authors>
Expand All @@ -24,13 +24,22 @@
<PackageProjectUrl>https://github.com/FolkerKinzel/Contacts.IO</PackageProjectUrl>
<PackageIconUrl />
</PropertyGroup>
<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- 👇 disable the nullable warnings when compiling for .NET Standard 2.0 -->
<PropertyGroup Condition="'$(TargetFramework)' == 'net40' or '$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netstandard2.0'">
<NoWarn>$(NoWarn);8600;8601;8602;8603;8604</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Translations\**" />
<EmbeddedResource Remove="Translations\**" />
<None Remove="Translations\**" />
</ItemGroup>
<ItemGroup>
<Using Remove="System.Net.Http" />
<Using Include="System.Diagnostics" />
Expand All @@ -41,7 +50,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="FolkerKinzel.Contacts" Version="1.5.0" />
<PackageReference Include="FolkerKinzel.CsvTools" Version="1.6.1" />
<PackageReference Include="FolkerKinzel.CsvTools" Version="1.6.2" />
<PackageReference Include="FolkerKinzel.VCards" Version="3.1.0" />
<PackageReference Include="Nullable" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 44ffd3d

Please sign in to comment.