Skip to content

Commit

Permalink
Merge pull request #48 from espertechinc/wip_8.9.0-x
Browse files Browse the repository at this point in the history
Wip 8.9.0 x
  • Loading branch information
bernhardttom authored Feb 3, 2024
2 parents b3eb2cb + bc9dc15 commit b3f6689
Show file tree
Hide file tree
Showing 8,771 changed files with 330,709 additions and 288,768 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- run: dotnet restore NEsperAll.sln
- run: msbuild NEsper.proj
- store_artifacts:
path: build/NEsper-8.5.8.zip
path: build/NEsper-8.9.0.zip
- store_artifacts:
path: build/packages
7 changes: 6 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">8.5.8</VersionPrefix>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">8.9.0</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
</PropertyGroup>

Expand Down Expand Up @@ -46,6 +46,11 @@
<DefineConstants>$(DefineConstants);NETCORE;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='net8.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;NET7;NET8;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='net7.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;NET7;</DefineConstants>
Expand Down
2 changes: 1 addition & 1 deletion NEsper.Documentation/NEsper.Documentation.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Name>NEsper.Documentation</Name>
<!-- SHFB properties -->
<FrameworkVersion>.NET Framework 4.6.2</FrameworkVersion>
<OutputPath>..\build\NEsper-8.5.8\docs\</OutputPath>
<OutputPath>..\build\NEsper-8.9.0\docs\</OutputPath>
<HtmlHelpName>NEsper</HtmlHelpName>
<Language>en-US</Language>
<TransformComponentArguments>
Expand Down
6 changes: 3 additions & 3 deletions NEsper.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NEsper</id>
<version>8.5.8</version>
<version>8.9.0</version>
<authors>EsperTech</authors>
<owners>EsperTech</owners>
<language>en-us</language>
Expand All @@ -12,7 +12,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A component for complex event processing (CEP). NEsper enables rapid development of applications that process large volumes of incoming messages or events, regardless of whether incoming messages are historical or real-time in nature. NEsper filters and analyze events in various ways, and respond to conditions of interest with minimal latency.</description>
<summary>A component for complex event processing (CEP).</summary>
<copyright>Copyright (C) 2006-2017 EsperTech. All rights reserved.</copyright>
<copyright>Copyright (C) 2006-2024 EsperTech. All rights reserved.</copyright>
<tags>esper esp cep</tags>
<title>NEsper</title>
<dependencies>
Expand All @@ -27,7 +27,7 @@
</metadata>

<files>
<file src="build\NEsper-8.5.8\lib\**" target="lib\{framework name}[{version}]" />
<file src="build\NEsper-8.9.0\lib\**" target="lib\{framework name}[{version}]" />
</files>
</package>

4 changes: 2 additions & 2 deletions NEsper.proj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
<!-- Distribution version -->
<Version Condition=" '$(CCNetLabel)' != '' ">$(CCNetLabel)</Version>
<Version Condition=" '$(Version)' == '' ">8.5.8</Version>
<Version Condition=" '$(Version)' == '' ">8.9.0</Version>

<!-- Build Directories -->
<BuildPath>$(MSBuildProjectDirectory)\build</BuildPath>
Expand Down Expand Up @@ -176,7 +176,7 @@

<Target Name="Copy-Binaries-All">
<MSBuild Projects="NEsper.proj" Properties="Configuration=$(Configuration);Platform=$(Platform);Framework=net6.0" Targets="Copy-Binaries-Main"/>
<MSBuild Projects="NEsper.proj" Properties="Configuration=$(Configuration);Platform=$(Platform);Framework=netcoreapp3.1" Targets="Copy-Binaries-Main"/>
<MSBuild Projects="NEsper.proj" Properties="Configuration=$(Configuration);Platform=$(Platform);Framework=net7.0" Targets="Copy-Binaries-Main"/>
</Target>

<!-- SECTION BREAK -->
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.Codegen.Roslyn/NEsper.Codegen.Roslyn.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/NEsper.LINQ.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/CascadeObservableCollection.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/DisposableObservableCollection.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/EsperQuery.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/EsperQueryExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/EventBeanExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/EventTransformationFactory.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/ExtViewExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/FilterViewExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/LinqToSoda.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/ServiceProviderExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/SortCriteria.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/StatViewExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/StatementExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/StatementObjectModelExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/StatementObservableCollection.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/StdViewExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/TimeSpanExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/WinViewExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/statistics/RegressionStatistics.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
2 changes: 1 addition & 1 deletion NEsper/NEsper.LINQ/linq/statistics/UnivariateStatistics.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006-2017 Esper Team. All rights reserved. /
// Copyright (C) 2006-2024 Esper Team. All rights reserved. /
// http://esper.codehaus.org /
// ---------------------------------------------------------------------------------- /
// The software in this package is published under the terms of the GPL license /
Expand Down
Loading

0 comments on commit b3f6689

Please sign in to comment.