|
4 | 4 | <TargetFramework>net10.0</TargetFramework> |
5 | 5 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 6 | <PackageId>CodecMapper</PackageId> |
7 | | - <Authors>Adam Chester</Authors> |
| 7 | + <Version>0.1.0</Version> |
| 8 | + <Authors>Adam Davies</Authors> |
8 | 9 | <Description>Schema-first, type-safe JSON and XML codecs for F# with Native AOT and Fable support.</Description> |
9 | 10 | <PackageProjectUrl>https://adz.github.io/CodecMapper/</PackageProjectUrl> |
10 | 11 | <RepositoryUrl>https://github.com/adz/CodecMapper</RepositoryUrl> |
11 | 12 | <RepositoryType>git</RepositoryType> |
12 | 13 | <PackageReadmeFile>README.md</PackageReadmeFile> |
13 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
14 | | - <PackageTags>fsharp;json;xml;serialization;deserialization;codec;schema-first;type-safe;fable;native-aot;data-contract;json-schema</PackageTags> |
| 14 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 15 | + <PackageReleaseNotes>First public preview release of CodecMapper with schema DSL, shared JSON/XML codecs, YAML and key/value projections, JSON Schema import/export, and the .NET bridge package in the repo.</PackageReleaseNotes> |
| 16 | + <PackageTags>fsharp;json;xml;serialization;deserialization;codec;schema-first;type-safe;fable;fable-javascript;native-aot;data-contract;json-schema</PackageTags> |
15 | 17 | </PropertyGroup> |
16 | 18 |
|
17 | 19 | <ItemGroup> |
|
26 | 28 |
|
27 | 29 | <ItemGroup> |
28 | 30 | <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 31 | + <Content Include="$(MSBuildProjectFile)" Pack="true" PackagePath="fable/" /> |
| 32 | + <Content Include="Core.fs" Pack="true" PackagePath="fable/" /> |
| 33 | + <Content Include="Schema.fs" Pack="true" PackagePath="fable/" /> |
| 34 | + <Content Include="Json.fs" Pack="true" PackagePath="fable/" /> |
| 35 | + <Content Include="JsonSchema.fs" Pack="true" PackagePath="fable/" /> |
| 36 | + <Content Include="Xml.fs" Pack="true" PackagePath="fable/" /> |
| 37 | + <Content Include="KeyValue.fs" Pack="true" PackagePath="fable/" /> |
| 38 | + <Content Include="Yaml.fs" Pack="true" PackagePath="fable/" /> |
29 | 39 | </ItemGroup> |
30 | 40 |
|
31 | 41 | </Project> |
0 commit comments