diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-05-17 08:33:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-17 08:33:54 +0200 |
commit | c3510cd9819934ff4eb3bf516f3437faf5e3abea (patch) | |
tree | 48f414d271a719e0847f3b4028ed72d288f5d16f /modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj | |
parent | 18203b7e786f55871a824d29547feb895b206568 (diff) | |
parent | 01397a10d9f82e00638eb9b5c200b6dde8e515a9 (diff) |
Merge pull request #18949 from neikeq/alo
Mono: Project building fixes
Diffstat (limited to 'modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj')
-rw-r--r-- | modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj b/modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj index 981083a3c2..1c8714e31d 100644 --- a/modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj +++ b/modules/mono/editor/GodotSharpTools/GodotSharpTools.csproj @@ -11,7 +11,7 @@ </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> + <DebugType>portable</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug</OutputPath> <DefineConstants>DEBUG;</DefineConstants> @@ -20,7 +20,7 @@ <ConsolePause>false</ConsolePause> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>full</DebugType> + <DebugType>portable</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release</OutputPath> <ErrorReport>prompt</ErrorReport> |