File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
source/loaders/cs_loader/netcore/source Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ static MetacallEntryPoint()
29
29
30
30
#if NETCOREAPP1_0 || NETCOREAPP1_1 || NETCOREAPP1_2
31
31
loader = new Providers . LoaderV1 ( log ) ;
32
- #elif NETCOREAPP2_0 || NETCOREAPP2_1 || NETCOREAPP2_2 || NET5_0 // TODO: Implement or test support for 3
32
+ #elif NETCOREAPP2_0 || NETCOREAPP2_1 || NETCOREAPP2_2 || NET5_0 || NET7_0 // TODO: Implement or test support for 3
33
33
loader = new Providers . LoaderV2 ( log ) ;
34
34
#else
35
35
# error "NET Core platform not supported"
Original file line number Diff line number Diff line change 1
- #if NETCOREAPP2_0 || NETCOREAPP2_1 || NETCOREAPP2_2 || NET5_0
1
+ #if NETCOREAPP2_0 || NETCOREAPP2_1 || NETCOREAPP2_2 || NET5_0 || NET7_0
2
2
3
3
using System ;
4
4
using System . Collections . Generic ;
Original file line number Diff line number Diff line change 4
4
<AssemblyName >CSLoader</AssemblyName >
5
5
<PackageId >CSLoader</PackageId >
6
6
<VersionPrefix >1.0.0</VersionPrefix >
7
+ <!-- NetCore 2 -->
7
8
<!-- <TargetFramework>netcoreapp2.2</TargetFramework> -->
8
- <TargetFramework >net5.0</TargetFramework >
9
+ <!-- NetCore 5 -->
10
+ <!-- <TargetFramework>net5.0</TargetFramework> -->
11
+ <!-- NetCore 7 -->
12
+ <TargetFramework >net7.0</TargetFramework >
9
13
<LangVersion >latest</LangVersion >
10
14
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
11
15
</PropertyGroup >
12
16
13
17
<ItemGroup >
14
- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 3.2.1" />
18
+ <!-- NetCore 5 -->
19
+ <!-- <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.2.1" /> -->
20
+ <!-- NetCore 7 -->
21
+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.4.0" />
15
22
</ItemGroup >
16
23
17
24
</Project >
You can’t perform that action at this time.
0 commit comments