Fix Release build compilation issues
- Fix enum ExceptionUID to use unsigned __int64 for 64-bit value - Add TrackFileAccess, CLToolExe, CLToolPath settings to MemoryManager.vcxproj - Add ExecutablePath for VS2010 compiler tools 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -301,7 +301,7 @@ namespace Item
|
||||
|
||||
namespace GiveItem
|
||||
{
|
||||
enum ExceptionUID
|
||||
enum ExceptionUID : unsigned __int64
|
||||
{
|
||||
// 쿠폰으로 아이템 지급시 임시 인벤토리가 꽉찬 상태라면 지급을 펜딩한다. 이 때, 사용되는 예외 UID
|
||||
PENDING_ITEM_UID = 0xFFFFFFFFFFFFFFFF
|
||||
|
||||
@@ -66,6 +66,12 @@
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<TrackFileAccess>false</TrackFileAccess>
|
||||
<CLToolExe>cl.exe</CLToolExe>
|
||||
<CLToolPath>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin</CLToolPath>
|
||||
<ExecutablePath>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;$(ExecutablePath)</ExecutablePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">../Library/$(Configuration)\</OutDir>
|
||||
@@ -93,7 +99,6 @@
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<ExecutablePath Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
||||
Reference in New Issue
Block a user