Badgerati/NotifyMeCI

View on GitHub
NotifyMeCI.Engine/NotifyMeCI.Engine.csproj

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{F8873127-C7A1-4EB7-94A5-F8AA23079C39}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>NotifyMeCI.Engine</RootNamespace>
    <AssemblyName>NotifyMeCI.Engine</AssemblyName>
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="Haxxor.Framework, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\Haxxor.Framework.1.0.0.1\lib\net45\Haxxor.Framework.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="Icarus.Core, Version=1.3.2.7, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\packages\Icarus.Core.1.3.2.7\lib\net45\Icarus.Core.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Enums\BuildStatusType.cs" />
    <Compile Include="Enums\CIServerType.cs" />
    <Compile Include="Exceptions\NMCIException.cs" />
    <Compile Include="Managers\SettingManager.cs" />
    <Compile Include="Events\ApplicationEvents.cs" />
    <Compile Include="Objects\BuildStatus.cs" />
    <Compile Include="Objects\CIJob.cs" />
    <Compile Include="Objects\Setting.cs" />
    <Compile Include="Preferences.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Repositories\Interfaces\IBuildStatusRepository.cs" />
    <Compile Include="Repositories\BuildStatusRepository.cs" />
    <Compile Include="Repositories\Interfaces\IRepository.cs" />
    <Compile Include="Repositories\Repository.cs" />
    <Compile Include="Repositories\SettingRepository.cs" />
    <Compile Include="Repositories\Interfaces\ISettingRepository.cs" />
    <Compile Include="Servers\TravisCIServer.cs" />
    <Compile Include="Servers\AppVeyorCIServer.cs" />
    <Compile Include="Servers\BaseCIServer.cs" />
    <Compile Include="Servers\CIServerFactory.cs" />
    <Compile Include="Servers\ICIServer.cs" />
    <Compile Include="Servers\JenkinsCIServer.cs" />
    <Compile Include="Repositories\CIServerRepository.cs" />
    <Compile Include="Repositories\Interfaces\ICIServerRepository.cs" />
    <Compile Include="Objects\CIServer.cs" />
    <Compile Include="Tasks\ITask.cs" />
    <Compile Include="Tasks\JobTask.cs" />
    <Compile Include="Tasks\NotifyTask.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\NotifyMeCI.Injector\NotifyMeCI.Injector.csproj">
      <Project>{add295d0-4b8e-430f-b0a8-b7370f2563b6}</Project>
      <Name>NotifyMeCI.Injector</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>