1
0
Fork 0
mirror of https://github.com/atom0s/Steamless.git synced 2024-12-19 23:07:41 +01:00

CLI: Remove .pdb generation on Release mode.

Unpacker: Variant v10x86 - Fix incorrect output path when compiled for Release mode.
This commit is contained in:
atom0s 2022-04-04 21:59:42 -07:00
parent c2719b776d
commit 700425f68a
No known key found for this signature in database
GPG key ID: 37D5FD3494D79AF8
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Steamless\bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>

View file

@ -24,9 +24,9 @@
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\Steamless\bin\x86\Release\Plugins\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>