fix outputpath

This commit is contained in:
Chikashi Miyama 2019-07-13 20:56:02 +02:00
parent 7f2c976b56
commit ea53464cc8
2 changed files with 6 additions and 8 deletions

View file

@ -15,13 +15,11 @@ Global
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.ActiveCfg = Debug|ia64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.Build.0 = Debug|ia64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.ActiveCfg = Debug|x86
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|x64.ActiveCfg = Debug|x86
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|x86.ActiveCfg = Debug|x86
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|x86.Build.0 = Debug|x86
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|ia64.ActiveCfg = Release|ia64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|ia64.Build.0 = Release|ia64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|ia64.ActiveCfg = Release|x86
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x64.ActiveCfg = Release|x64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x64.Build.0 = Release|x64
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x86.ActiveCfg = Release|x86

View file

@ -10,22 +10,22 @@
<OutputType>Package</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<OutputPath>..\..\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<OutputPath>..\..\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<OutputPath>..\..\</OutputPath>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<OutputPath>..\..\</OutputPath>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
</PropertyGroup>