Advertisement
Guest User

Core.Tests.cproj

a guest
Aug 23rd, 2017
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3.   <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4.   <PropertyGroup>
  5.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7.     <ProjectGuid>{087CF9C3-6450-4C69-99C2-D9F6FD104B96}</ProjectGuid>
  8.     <OutputType>Library</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>Core.Tests</RootNamespace>
  11.     <AssemblyName>Core.Tests</AssemblyName>
  12.     <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13.     <FileAlignment>512</FileAlignment>
  14.     <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15.     <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16.     <TargetFrameworkProfile />
  17.   </PropertyGroup>
  18.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19.     <PlatformTarget>AnyCPU</PlatformTarget>
  20.     <DebugSymbols>true</DebugSymbols>
  21.     <DebugType>full</DebugType>
  22.     <Optimize>false</Optimize>
  23.     <OutputPath>bin\Debug\</OutputPath>
  24.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  25.     <ErrorReport>prompt</ErrorReport>
  26.     <WarningLevel>4</WarningLevel>
  27.     <Prefer32Bit>false</Prefer32Bit>
  28.   </PropertyGroup>
  29.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30.     <PlatformTarget>AnyCPU</PlatformTarget>
  31.     <DebugType>pdbonly</DebugType>
  32.     <Optimize>true</Optimize>
  33.     <OutputPath>bin\Release\</OutputPath>
  34.     <DefineConstants>TRACE</DefineConstants>
  35.     <ErrorReport>prompt</ErrorReport>
  36.     <WarningLevel>4</WarningLevel>
  37.   </PropertyGroup>
  38.   <PropertyGroup>
  39.     <StartupObject />
  40.   </PropertyGroup>
  41.   <ItemGroup>
  42.     <Reference Include="NDesk.Options">
  43.       <HintPath>..\..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
  44.     </Reference>
  45.     <Reference Include="Newtonsoft.Json">
  46.       <HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  47.     </Reference>
  48.       <Reference Include="nunit.framework, Version=3.6.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb">
  49.           <HintPath>..\..\packages\NUnit.3.6.0\lib\net45\nunit.framework.dll</HintPath>
  50.     </Reference>
  51.     <Reference Include="System" />
  52.       <Reference
  53.              Include="System.Collections.Immutable, Version=1.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
  54.           <HintPath>
  55.               ..\..\packages\System.Collections.Immutable.1.3.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll
  56.           </HintPath>
  57.     </Reference>
  58.     <Reference Include="System.Core" />
  59.     <Reference Include="System.Xml.Linq" />
  60.     <Reference Include="System.Data.DataSetExtensions" />
  61.     <Reference Include="Microsoft.CSharp" />
  62.     <Reference Include="System.Data" />
  63.     <Reference Include="System.Net.Http" />
  64.     <Reference Include="System.Xml" />
  65.   </ItemGroup>
  66.   <ItemGroup>
  67.     <Compile Include="Common\UtilsTest.cs" />
  68.     <Compile Include="Program.cs" />
  69.     <Compile Include="Properties\AssemblyInfo.cs" />
  70.     <Compile Include="Schedulers\AdaptiveWeightsTest.cs" />
  71.   </ItemGroup>
  72.   <ItemGroup>
  73.     <None Include="App.config" />
  74.     <None Include="packages.config" />
  75.   </ItemGroup>
  76.   <ItemGroup>
  77.     <ProjectReference Include="..\..\Components\Core\Core.csproj">
  78.       <Project>{5CC961E4-58D1-4EDE-9067-72BD3BA0D6C3}</Project>
  79.       <Name>Core</Name>
  80.     </ProjectReference>
  81.   </ItemGroup>
  82.   <ItemGroup>
  83.     <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  84.   </ItemGroup>
  85.   <ItemGroup />
  86.   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88.       Other similar extension points exist, see Microsoft.Common.targets.
  89.  <Target Name="BeforeBuild">
  90.  </Target>
  91.  <Target Name="AfterBuild">
  92.  </Target>
  93.  -->
  94. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement