Skip to content

Commit

Permalink
Update to latest CoreEx.
Browse files Browse the repository at this point in the history
  • Loading branch information
chullybun committed Mar 4, 2024
1 parent 4579972 commit 7d730b3
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 15 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@

Represents the **NuGet** versions.

## v2.5.1
- *Fixed:* Updated `CoreEx` (`v3.13.0`) and other dependencies.

## v2.5.0
- *Enhancement:* Updated `DbEx` (`v2.5.0`) and`CoreEx` (`v3.12.0`) and other dependencies.
- *Enhancement:* Updated `DbEx` (`v2.5.0`) and `CoreEx` (`v3.12.0`) and other dependencies.

## v2.4.0
- *Enhancement:* Updated `DbEx` (`v2.4.0`) and`CoreEx` (`v3.9.0`) and other dependencies.
- *Enhancement:* Updated `DbEx` (`v2.4.0`) and `CoreEx` (`v3.9.0`) and other dependencies.
- *Enhancement:* Updated the `dotnet new ntangle` template to target `net8.0` and [isolated](https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide) functions.

## v2.3.6
- *Fixed:* Updated `DbEx` (`v2.3.15`) and`CoreEx` (`v3.8.1`) and other dependencies.
- *Fixed:* Updated `DbEx` (`v2.3.15`) and `CoreEx` (`v3.8.1`) and other dependencies.
- *Fixed*: Updated `OnRamp` (`2.0.0`) which necessitated internal change from `Newtonsoft.Json` (now deprecated) to `System.Text.Json`.

## v2.3.5
- *Fixed:* Updated `DbEx` (`v2.3.13`) and`CoreEx` (`v3.6.1`) and other dependencies.
- *Fixed:* Updated `DbEx` (`v2.3.13`) and `CoreEx` (`v3.6.1`) and other dependencies.
- *Fixed:* Added `net8.0` support.
- *Fixed:* The `EntityOrchestrator` mapping code generation for sub-classes was not always being generated correctly; non-compiling missing `,` formatting corrected.

Expand Down
2 changes: 1 addition & 1 deletion Common.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.5.0</Version>
<Version>2.5.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>NTangle Developers</Authors>
<Company>Avanade</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup> <ItemGroup>
<PackageReference Include="CoreEx.Azure" Version="3.12.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.12.0" />
<PackageReference Include="CoreEx.Validation" Version="3.12.0" />
<PackageReference Include="CoreEx.Azure" Version="3.13.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.13.0" />
<PackageReference Include="CoreEx.Validation" Version="3.13.0" />
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.13.5" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<Folder Include="Entities\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx.Azure" Version="3.12.0" />
<PackageReference Include="CoreEx.Azure" Version="3.13.0" />
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.13.5" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Azure" Version="3.12.0" />
<PackageReference Include="CoreEx.Azure" Version="3.13.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/NTangle/NTangle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.12.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.13.0" />
<PackageReference Include="OnRamp" Version="2.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion tools/NTangle.CodeGen/NTangle.CodeGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.12.0" />
<PackageReference Include="CoreEx.Database.SqlServer" Version="3.13.0" />
<PackageReference Include="DbEx.SqlServer" Version="2.5.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NTangle.CodeGen" Version="2.5.0" />
<PackageReference Include="NTangle.CodeGen" Version="2.5.1" />
</ItemGroup>
<ItemGroup>
<None Update="ntangle.yaml">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!--#endif -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NTangle" Version="2.5.0" />
<PackageReference Include="NTangle" Version="2.5.1" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
Expand All @@ -29,7 +29,7 @@
<Folder Include="Services\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CoreEx.Azure" Version="3.9.0" />
<PackageReference Include="CoreEx.Azure" Version="3.13.0" />
<!--#if (implement_publisher_console) -->
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<!--#endif -->
Expand Down

0 comments on commit 7d730b3

Please sign in to comment.