Skip to content

Commit 5d7c216

Browse files
committed
Fix CI DefineConstants error
1 parent cd0cf2c commit 5d7c216

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
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

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>Lua</RootNamespace>
6+
<NoWarn>1701;1702;3014;3021;3002;3001;3003;8618;8625;8601;8602;8603;8600;8604;</NoWarn>
67
</PropertyGroup>
78

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

14+
<PropertyGroup Condition="'$(Configuration)'=='Release'">
15+
<DefineConstants>NETSTANDARD2_0;LUA_CORE;_WIN32;LUA_COMPAT_VARARG;LUA_COMPAT_MOD;LUA_COMPAT_GFIND;CATCH_EXCEPTIONS</DefineConstants>
16+
</PropertyGroup>
17+
1318
</Project>

Core/LuaInterface/LuaInterface.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<Authors>megax orthographic-pedant jmurdick ema</Authors>
1010
<Company>Lemutec</Company>
1111
<Description>Lightweight LuaInterface for .NET</Description>
12-
<PackageProjectUrl>https://github.com/lemutec/LuaIntercace</PackageProjectUrl>
13-
<RepositoryUrl>https://github.com/lemutec/LuaIntercace</RepositoryUrl>
12+
<PackageProjectUrl>https://github.com/lemutec/LuaInterface</PackageProjectUrl>
13+
<RepositoryUrl>https://github.com/lemutec/LuaInterface</RepositoryUrl>
1414
<RepositoryType>git</RepositoryType>
1515
<PackageTags>.NET Lua</PackageTags>
1616
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -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)