Skip to content

Commit 6d2e8d7

Browse files
committed
roslyn revert to 4.12 for fix Span implicit
1 parent 2566127 commit 6d2e8d7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CSharp.lua/CSharp.lua.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
17+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

test/TestCases/TestCases.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<Version>1.1.0</Version>
77
<ApplicationIcon />
88
<StartupObject />

test/__bin/Lua/lua/run.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ local luaVersions = {
1414
publishOutputDir = "bin/Debug/PublishOutput/"
1515

1616
local function publish(depth)
17-
local cmd = ("dotnet publish %s --configuration Debug --output %s"):format(("../"):rep(depth), publishOutputDir)
17+
local cmd = ("dotnet build %s --configuration Debug --output %s"):format(("../"):rep(depth), publishOutputDir)
1818
execute(cmd)
1919
end
2020

test/fibonacci/cmd.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
set dir=../../CSharp.lua.Launcher/bin/Debug/net5.0/
1+
set dir=../../CSharp.lua.Launcher/bin/Debug/net9.0/
22
dotnet "%dir%CSharp.lua.Launcher.dll" -s src -d out
33
"../__bin/lua5.1/lua" launcher.lua

0 commit comments

Comments
 (0)