File tree Expand file tree Collapse file tree 3 files changed +28
-5
lines changed
src/Confluent.SchemaRegistry.Rules Expand file tree Collapse file tree 3 files changed +28
-5
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ public class BuiltinLibrary : ILibrary
7
7
8
8
public virtual IList < EnvOption > CompileOptions
9
9
{
10
- get => new List < EnvOption > { IEnvOption . Declarations ( BuiltinDeclarations . Create ( ) ) } ;
10
+ get => new List < EnvOption > { EnvOptions . Declarations ( BuiltinDeclarations . Create ( ) ) } ;
11
11
}
12
12
13
13
public virtual IList < ProgramOption > ProgramOptions
14
14
{
15
15
get => new List < ProgramOption >
16
16
{
17
- IProgramOption . EvalOptions ( EvalOption . OptOptimize ) ,
18
- IProgramOption . Functions ( BuiltinOverload . Create ( ) )
17
+ Cel . ProgramOptions . EvalOptions ( EvalOption . OptOptimize ) ,
18
+ Cel . ProgramOptions . Functions ( BuiltinOverload . Create ( ) )
19
19
} ;
20
20
}
21
21
}
Original file line number Diff line number Diff line change
1
+ // Copyright 2024 Confluent Inc.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+ //
15
+ // Refer to LICENSE for more information.
16
+
17
+ using System . ComponentModel ;
18
+
19
+ namespace System . Runtime . CompilerServices
20
+ {
21
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
22
+ internal static class IsExternalInit { }
23
+ }
Original file line number Diff line number Diff line change 16
16
<Title >Confluent.SchemaRegistry.Rules</Title >
17
17
<AssemblyName >Confluent.SchemaRegistry.Rules</AssemblyName >
18
18
<VersionPrefix >2.11.1</VersionPrefix >
19
- <TargetFrameworks >net6.0;net8.0</TargetFrameworks >
19
+ <TargetFrameworks >netstandard2.1;net462; net6.0;net8.0</TargetFrameworks >
20
20
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
21
21
<GenerateDocumentationFile >true</GenerateDocumentationFile >
22
22
<SignAssembly >true</SignAssembly >
34
34
</ItemGroup >
35
35
36
36
<ItemGroup >
37
- <PackageReference Include =" Cel.NET" Version =" 0.3.2 " />
37
+ <PackageReference Include =" Cel.NET" Version =" 0.4.0 " />
38
38
</ItemGroup >
39
39
40
40
<ItemGroup >
You can’t perform that action at this time.
0 commit comments