Skip to content

Commit

Permalink
Merge pull request #42 from espertechinc/assembly-load-context
Browse files Browse the repository at this point in the history
Hotfix 8.5.5
  • Loading branch information
bernhardttom authored Mar 9, 2023
2 parents 95bc105 + 4284ced commit 578c69a
Show file tree
Hide file tree
Showing 596 changed files with 15,528 additions and 18,289 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
win: circleci/windows@2.2.0
win: circleci/windows@5.0

jobs:
build:
Expand All @@ -12,6 +12,6 @@ jobs:
- run: dotnet restore NEsperAll.sln
- run: msbuild NEsper.proj
- store_artifacts:
path: build/NEsper-8.5.4.zip
path: build/NEsper-8.5.5.zip
- store_artifacts:
path: build/packages
10,170 changes: 0 additions & 10,170 deletions .idea/.idea.NEsper/.idea/contentModel.xml

This file was deleted.

4 changes: 2 additions & 2 deletions .idea/.idea.NEsper/.idea/indexLayout.xml
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions .idea/.idea.NEsper/.idea/modules.xml

This file was deleted.

30 changes: 0 additions & 30 deletions .idea/.idea.NEsper/.idea/riderModule.iml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/.idea.NEsper/riderModule.iml

This file was deleted.

30 changes: 0 additions & 30 deletions .idea/.idea.NEsperAll/.idea/riderModule.iml

This file was deleted.

16 changes: 0 additions & 16 deletions .idea/.idea.NEsperAll/riderModule.iml

This file was deleted.

18 changes: 7 additions & 11 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<Language>en-US</Language>
<LangVersion>8.0</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageTags>NEsper Esper ESP CEP</PackageTags>
<PackageCopyright>Copyright (C) 2014-2019 Espertech. All rights reserved.</PackageCopyright>
Expand All @@ -17,7 +18,7 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">8.5.4</VersionPrefix>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">8.5.5</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
</PropertyGroup>

Expand All @@ -40,23 +41,18 @@
<DefineConstants>$(DefineConstants);NETFRAMEWORK;NET472;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.1'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
<DefineConstants>$(DefineConstants);NETCORE;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
<PropertyGroup Condition="'$(TargetFramework)'=='net6.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
<DefineConstants>$(DefineConstants);NETCORE;NET5;NET6;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='net5.0'">
<NetCore>true</NetCore>
<DefineConstants>$(DefineConstants);NETCORE;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
<DefineConstants>$(DefineConstants);NETCORE;NET5;</DefineConstants>
</PropertyGroup>
</Project>
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.4\docs\</OutputPath>
<OutputPath>..\build\NEsper-8.5.5\docs\</OutputPath>
<HtmlHelpName>NEsper</HtmlHelpName>
<Language>en-US</Language>
<TransformComponentArguments>
Expand Down
4 changes: 2 additions & 2 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.4</version>
<version>8.5.5</version>
<authors>EsperTech</authors>
<owners>EsperTech</owners>
<language>en-us</language>
Expand All @@ -27,7 +27,7 @@
</metadata>

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

6 changes: 3 additions & 3 deletions NEsper.proj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">Any CPU</Platform>
<Framework Condition=" '$(Framework)' == '' ">net472</Framework>
<Framework Condition=" '$(Framework)' == '' ">net6.0</Framework>

<SolutionDir>$(MSBuildProjectDirectory)</SolutionDir>
<!-- Distribution version -->
<Version Condition=" '$(CCNetLabel)' != '' ">$(CCNetLabel)</Version>
<Version Condition=" '$(Version)' == '' ">8.5.4</Version>
<Version Condition=" '$(Version)' == '' ">8.5.5</Version>

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

<Target Name="Copy-Binaries-All">
<MSBuild Projects="NEsper.proj" Properties="Configuration=$(Configuration);Platform=$(Platform);Framework=net472" Targets="Copy-Binaries-Main"/>
<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"/>
</Target>

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>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
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>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
15 changes: 0 additions & 15 deletions NEsperAll.sln
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NEsper.Examples.VirtualDW",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NEsper.Examples.MatchMaker", "examples\NEsper.Examples\example\matchmaker\NEsper.Examples.MatchMaker.csproj", "{0B9B80B6-6084-43C9-A75D-C02EC07070F3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NEsper.Examples.MSMQ", "examples\NEsper.Examples\example\NEsper.Examples.MSMQ\NEsper.Examples.MSMQ.csproj", "{6C00D901-6F48-418C-99D9-372613893315}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NEsper.Avro", "src\NEsper.Avro\NEsper.Avro.csproj", "{10A408F5-05F0-4808-94EF-799FADA6750E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NEsper.Avro.Tests", "tst\NEsper.Avro.Tests\NEsper.Avro.Tests.csproj", "{A785D18E-6EB6-4725-B40A-0057CD592292}"
Expand Down Expand Up @@ -508,18 +506,6 @@ Global
{0B9B80B6-6084-43C9-A75D-C02EC07070F3}.Release|x64.Build.0 = Release|Any CPU
{0B9B80B6-6084-43C9-A75D-C02EC07070F3}.Release|x86.ActiveCfg = Release|Any CPU
{0B9B80B6-6084-43C9-A75D-C02EC07070F3}.Release|x86.Build.0 = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|x64.ActiveCfg = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|x64.Build.0 = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|x86.ActiveCfg = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Debug|x86.Build.0 = Debug|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|Any CPU.Build.0 = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|x64.ActiveCfg = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|x64.Build.0 = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|x86.ActiveCfg = Release|Any CPU
{6C00D901-6F48-418C-99D9-372613893315}.Release|x86.Build.0 = Release|Any CPU
{10A408F5-05F0-4808-94EF-799FADA6750E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{10A408F5-05F0-4808-94EF-799FADA6750E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{10A408F5-05F0-4808-94EF-799FADA6750E}.Debug|x64.ActiveCfg = Debug|Any CPU
Expand Down Expand Up @@ -644,7 +630,6 @@ Global
{48B84BC5-1F78-47FA-A492-CF81C3658E8B} = {3426C460-A7A9-4AFB-9D42-04733A2F7C06}
{FD068D7A-DD6F-47FE-93A7-A86130E25C3C} = {3426C460-A7A9-4AFB-9D42-04733A2F7C06}
{0B9B80B6-6084-43C9-A75D-C02EC07070F3} = {3426C460-A7A9-4AFB-9D42-04733A2F7C06}
{6C00D901-6F48-418C-99D9-372613893315} = {3426C460-A7A9-4AFB-9D42-04733A2F7C06}
{10A408F5-05F0-4808-94EF-799FADA6750E} = {3B7A1B30-8D5A-496B-A734-9B80EB3C5794}
{A785D18E-6EB6-4725-B40A-0057CD592292} = {64E875A7-9654-43CF-87C3-FB3169CB7E20}
{0A298474-987A-4A93-B6E5-4CDEC1AF4D37} = {64E875A7-9654-43CF-87C3-FB3169CB7E20}
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
variables:
MASTER_PROJECT: .\NEsper.proj
PACKAGE_DIRECTORY: .\packages
VERSION: 8.5.4
VERSION: 8.5.5

phases:
build:
Expand Down
2 changes: 1 addition & 1 deletion docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
],
"properties": {
"TargetFramework": "netcoreapp3.1"
"TargetFramework": "net6.0"
},
"filter": "filter.yml",
"dest": "api",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Loading

0 comments on commit 578c69a

Please sign in to comment.