Skip to content

Commit

Permalink
#449 Correct output paths for all projects
Browse files Browse the repository at this point in the history
  • Loading branch information
nigel-sampson committed Jun 8, 2017
1 parent 3f57ce1 commit e7595d7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 19 deletions.
10 changes: 2 additions & 8 deletions src/Caliburn.Micro.Core/Caliburn.Micro.Core.csproj
Expand Up @@ -5,14 +5,8 @@
<AssemblyName>Caliburn.Micro</AssemblyName>
<RootNamespace>Caliburn.Micro</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\bin\netstandard\Release\</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\bin\netstandard\Debug\</OutputPath>
<OutputPath>..\..\bin\core\$(Configuration.ToLower())\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -5,16 +5,10 @@
<AssemblyName>Caliburn.Micro.Platform.Core</AssemblyName>
<RootNamespace>Caliburn.Micro</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<OutputPath>..\..\bin\platform-core\$(Configuration.ToLower())\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\bin\netstandard\Debug</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\bin\netstandard\Release</OutputPath>
</PropertyGroup>


<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions src/Caliburn.Micro.Platform/Caliburn.Micro.Platform.csproj
Expand Up @@ -5,6 +5,8 @@
<AssemblyName>Caliburn.Micro.Platform</AssemblyName>
<RootNamespace>Caliburn.Micro</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<OutputPath>..\..\bin\$(TargetFramework.ToLower())\$(Configuration.ToLower())\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
Expand Down Expand Up @@ -37,6 +39,8 @@
<DefineConstants>XFORMS</DefineConstants>
<PackageTargetFallback>portable-net45+win8+wpa81+wp8</PackageTargetFallback>
<DebugType>full</DebugType>
<OutputPath>..\..\bin\xamarin-forms\$(Configuration.ToLower())\</OutputPath>
<AssemblyName>Caliburn.Micro.Xamarin.Forms</AssemblyName>
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -19,7 +19,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Tests\net45\Debug\</OutputPath>
<OutputPath>..\..\bin\tests\net45\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -28,7 +28,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Tests\net45\Release\</OutputPath>
<OutputPath>..\..\bin\tests\net45\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down

0 comments on commit e7595d7

Please sign in to comment.