fix outputpath
This commit is contained in:
parent
7f2c976b56
commit
ea53464cc8
2 changed files with 6 additions and 8 deletions
|
@ -15,13 +15,11 @@ Global
|
||||||
Release|x86 = Release|x86
|
Release|x86 = Release|x86
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.ActiveCfg = Debug|ia64
|
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.ActiveCfg = Debug|x86
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|ia64.Build.0 = Debug|ia64
|
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|x64.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.ActiveCfg = Debug|x86
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Debug|x86.Build.0 = 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.ActiveCfg = Release|x86
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|ia64.Build.0 = Release|ia64
|
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x64.ActiveCfg = Release|x64
|
{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|x64.Build.0 = Release|x64
|
||||||
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x86.ActiveCfg = Release|x86
|
{B74E8014-72CB-4D0C-85AD-E9AE49A3FC7D}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
|
|
@ -10,22 +10,22 @@
|
||||||
<OutputType>Package</OutputType>
|
<OutputType>Package</OutputType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
<OutputPath>..\..\</OutputPath>
|
||||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||||
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
|
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
<OutputPath>..\..\</OutputPath>
|
||||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||||
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
|
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
||||||
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
|
<DefineConstants>Debug;UnityBuildDir=../../bin</DefineConstants>
|
||||||
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
|
<OutputPath>..\..\</OutputPath>
|
||||||
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||||
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
|
<OutputPath>..\..\</OutputPath>
|
||||||
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
|
||||||
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
|
<DefineConstants>UnityBuildDir=../../bin</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
Loading…
Reference in a new issue