Skip to content

Commit 91364ec

Browse files
committed
Fix CI DefineConstants error
1 parent cd0cf2c commit 91364ec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Applications/LuaRunner/LuaRunner.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<StartupObject>LuaRunner.LuaNetRunner</StartupObject>
99
</PropertyGroup>
1010

11-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
11+
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
1212
<DefineConstants>DEBUG;NET8</DefineConstants>
1313
<OutputPath>..\..\Run\Debug\net8.0\</OutputPath>
1414
</PropertyGroup>

Core/KopiLua/KopiLua.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RootNamespace>Lua</RootNamespace>
66
</PropertyGroup>
77

8-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
8+
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
99
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;LUA_CORE;_WIN32;LUA_COMPAT_VARARG;LUA_COMPAT_MOD;LUA_COMPAT_GFIND;CATCH_EXCEPTIONS</DefineConstants>
1010
<OutputPath>..\..\Run\Debug\netstandard2.0\</OutputPath>
1111
</PropertyGroup>

Core/LuaInterface/LuaInterface.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<NoWarn>1701;1702;3014;3021;3002;3001;3003;8618;8625;8601;8602;8603;8600;8604;</NoWarn>
2020
</PropertyGroup>
2121

22-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
22+
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
2323
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;LUA_CORE;_WIN32;LUA_COMPAT_VARARG;LUA_COMPAT_MOD;LUA_COMPAT_GFIND;CATCH_EXCEPTIONS</DefineConstants>
2424
<OutputPath>..\..\Run\Debug\netstandard2.0\</OutputPath>
2525
</PropertyGroup>
2626

27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
27+
<PropertyGroup Condition="'$(Configuration)'=='Release'">
2828
<DefineConstants>NETSTANDARD2_0;LUA_CORE;_WIN32;LUA_COMPAT_VARARG;LUA_COMPAT_MOD;LUA_COMPAT_GFIND;CATCH_EXCEPTIONS</DefineConstants>
2929
</PropertyGroup>
3030

0 commit comments

Comments
 (0)