Skip to content

Commit

Permalink
Added new build configuration for the CI pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
lkinsella committed Jan 24, 2020
1 parent 12f9120 commit 83373f3
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Src/Workshell.PE/Workshell.PE.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Workshell.PE.snk</AssemblyOriginatorKeyFile>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -31,6 +32,11 @@

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

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CI|AnyCPU'">
<OutputPath>..\..\bin\ci</OutputPath>
<DefineConstants>TRACE;SIGNED</DefineConstants>
</PropertyGroup>

Expand All @@ -44,10 +50,4 @@
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.5.0" />
</ItemGroup>

<!--
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<PackageReference Include="System.Net.Http" Version="4.3.3" />
</ItemGroup>
-->

</Project>
7 changes: 7 additions & 0 deletions dotNET PE.sln
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,25 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Workshell.PE.Tests", "tests
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
CI|Any CPU = CI|Any CPU
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.CI|Any CPU.ActiveCfg = CI|Any CPU
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.CI|Any CPU.Build.0 = CI|Any CPU
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2DF6E85A-7269-46C6-9032-1C3A8F029AE3}.Release|Any CPU.Build.0 = Release|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.CI|Any CPU.ActiveCfg = CI|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.CI|Any CPU.Build.0 = CI|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBED9C9E-0B8C-46B5-AE1D-865722B68E44}.Release|Any CPU.Build.0 = Release|Any CPU
{8A5FC684-11D6-4902-B0E0-7FEBC36BA21F}.CI|Any CPU.ActiveCfg = CI|Any CPU
{8A5FC684-11D6-4902-B0E0-7FEBC36BA21F}.CI|Any CPU.Build.0 = CI|Any CPU
{8A5FC684-11D6-4902-B0E0-7FEBC36BA21F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A5FC684-11D6-4902-B0E0-7FEBC36BA21F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A5FC684-11D6-4902-B0E0-7FEBC36BA21F}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
6 changes: 6 additions & 0 deletions src/Workshell.PE.Resources/Workshell.PE.Resources.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Workshell.PE.snk</AssemblyOriginatorKeyFile>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>

<PropertyGroup>
Expand Down Expand Up @@ -34,6 +35,11 @@
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CI|AnyCPU'">
<OutputPath>..\..\bin\ci</OutputPath>
<DefineConstants>TRACE;SIGNED</DefineConstants>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" />
</ItemGroup>
Expand Down
11 changes: 11 additions & 0 deletions tests/Workshell.PE.Tests/Workshell.PE.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,21 @@
<IsPackable>false</IsPackable>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Workshell.PE.snk</AssemblyOriginatorKeyFile>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;SIGNED</DefineConstants>
<OutputPath>..\..\bin\release</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CI|AnyCPU'">
<DefineConstants>TRACE;SIGNED</DefineConstants>
<OutputPath>..\..\bin\ci</OutputPath>
</PropertyGroup>

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

<ItemGroup>
Expand Down

0 comments on commit 83373f3

Please sign in to comment.