Skip to content

Commit 4cb9347

Browse files
committed
Bumped version and NuGet specification
1 parent be9f4b8 commit 4cb9347

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

BeanIO/BeanIO.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,12 @@
346346
<Generator>ResXFileCodeGenerator</Generator>
347347
<LastGenOutput>DefaultMessages.Designer.cs</LastGenOutput>
348348
</EmbeddedResource>
349-
<Content Include="Xsd\2011\01\mapping.xsd">
349+
<None Include="Xsd\2011\01\mapping.xsd">
350350
<SubType>Designer</SubType>
351-
</Content>
352-
<Content Include="Xsd\2012\03\mapping.xsd">
351+
</None>
352+
<None Include="Xsd\2012\03\mapping.xsd">
353353
<SubType>Designer</SubType>
354-
</Content>
354+
</None>
355355
</ItemGroup>
356356
<ItemGroup>
357357
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
@@ -367,9 +367,9 @@
367367
<EmbeddedResource Include="Internal\Config\beanio.properties" />
368368
<None Include="BeanIO.nuspec" />
369369
<None Include="packages.config" />
370-
<Content Include="Xsd\2015\06\mapping.xsd">
370+
<None Include="Xsd\2015\06\mapping.xsd">
371371
<SubType>Designer</SubType>
372-
</Content>
372+
</None>
373373
</ItemGroup>
374374
<ItemGroup />
375375
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />

BeanIO/BeanIO.nuspec

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
33
<metadata>
44
<id>FubarDev.$id$</id>
5-
<version>2.1.2</version>
5+
<version>2.2.0</version>
66
<title>BeanIO</title>
77
<authors>Mark Junker</authors>
88
<owners>FubarCoder</owners>
@@ -21,8 +21,14 @@ Supported platforms:
2121
<iconUrl>https://github.com/FubarDevelopment/beanio-net/raw/master/beanio-logo.png</iconUrl>
2222
<requireLicenseAcceptance>false</requireLicenseAcceptance>
2323
<developmentDependency>false</developmentDependency>
24-
<releaseNotes>First version</releaseNotes>
24+
<releaseNotes>- Added configuration to enable validation while marshalling
25+
- New mapping schema
26+
- New At() function for StreamBuilder
27+
- Support for ICollection<> fields/properties</releaseNotes>
2528
<copyright>Copyright © Fubar Development, Kevin Seim 2015</copyright>
2629
<tags>BeanIO PCL CSV XML JSON fixed length file parse serialize deserialize serialization deserialization parsing marshal marshalling unmarshal unmarshalling</tags>
2730
</metadata>
31+
<files>
32+
<file src="Xsd\**\*.xsd" target="src\Xsd" />
33+
</files>
2834
</package>

BeanIO/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
2626
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2727
// [assembly: AssemblyVersion("1.0.*")]
28-
[assembly: AssemblyVersion("2.1.0")]
29-
[assembly: AssemblyFileVersion("2.1.2")]
30-
[assembly: AssemblyInformationalVersion("2.1.0")]
28+
[assembly: AssemblyVersion("2.2.0")]
29+
[assembly: AssemblyFileVersion("2.2.0")]
30+
[assembly: AssemblyInformationalVersion("2.2.0")]
3131

3232
[assembly: InternalsVisibleTo("BeanIO.Test")]

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ This port is in most parts compatbile with 2.1.0 of BeanIO.
1818
* Exists as PCL for .NET 4.5, Windows 8, WP 8.1, Xamarin.iOS, Xamarin.MonoTouch, and Xamarin.Android.
1919
* Contains support for generics.
2020
* Contains support for customer provided scheme handlers (to be able to provide direct file access).
21+
* New mapping file to enable field validation while marshalling (2015-06)
22+
* Added mapping files to NuGet package
23+
* Support for ```ICollection<>``` interfaces
24+
* New At() function for StreamBuilder
2125

2226
### Changed
2327

0 commit comments

Comments
 (0)