Skip to content

Commit

Permalink
Publish Release 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-hassan committed Aug 11, 2022
1 parent c6ab30f commit fd199c9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
16 changes: 10 additions & 6 deletions OData2Poco.CommandLine/OData2Poco.CommandLine.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net6.0;net45</TargetFrameworks>
<TargetFramework>net45</TargetFramework>
<AssemblyName>O2Pgen</AssemblyName>
<Authors>Mohamed Hassan</Authors>
<Product>OData2Poco.CommandLine</Product>
Expand All @@ -18,18 +17,23 @@

<Import Project="..\OData2Poco.Core\OData2Poco.Core.projitems" Label="Shared" />

<Import Project="$(MSBuildProjectDirectory)\ilmerge.targets" Condition="$(TargetFramework.StartsWith('net4'))" />
<Import Project="$(MSBuildProjectDirectory)\ilmerge.targets" />


<ItemGroup>
<ProjectReference Include="..\OData2PocoLib\OData2Poco.csproj"/>
<ProjectReference Include="..\OData2PocoLib\OData2Poco.csproj">
<PrivateAssets>All</PrivateAssets>
</ProjectReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0"/>
<PackageReference Include="CommandLineParser" Version="2.8.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="ilmerge" Version="3.0.41" Condition="$(TargetFramework.StartsWith('net4'))" >
<PackageReference Include="ilmerge" Version="3.0.41" Condition="$(TargetFramework.StartsWith('net4'))">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
POCO classes can be used in a typed RESTful client OData services and code generation can be controlled by setting many options.

## What is news
Odata2Poco v4.3.0 is released with new features implemented for request [#43](https://github.com/moh-hassan/odata2poco/issues/43): Enable code generation that support nullable reference type of c#8 by adding new option -B/--enable-nullable-reference.
- Moving to .Net 6.
Odata2Poco v4.3.1 is released with new features implemented for request [#43](https://github.com/moh-hassan/odata2poco/issues/43): Enable code generation that support nullable reference type of c#8 by adding new option -B/--enable-nullable-reference.
- Allow reading remote metadata http(s) xml files.

- Moving Solution to .Net 6.

## OData2Poco Packages
OData2Poco is available in three flavers:
Expand Down
4 changes: 2 additions & 2 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## (Console: o2pgen / .Net Core: dotnet-o2pgen)

## Version 4.3.0
**Release Date:** August 10, 2022
## Version 4.3.1
**Release Date:** August 11, 2022
- New features implemented for request [#43](https://github.com/moh-hassan/odata2poco/issues/43): Enable code generation that support nullable reference type of c#8 by adding new option -B/--enable-nullable-reference.
- Moving to .Net 6.
- Allow reading remote metadata http(s) xml files.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#nuget version is nly changed by RELEASE TAG
version: 4.3.0-beta-{build}
version: 4.3.1-beta-{build}
image: Visual Studio 2022
pull_requests:
do_not_increment_build_number: false
Expand Down

0 comments on commit fd199c9

Please sign in to comment.