Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2457_ExpertSystem/UnitTests/UnitTests.csproj @ 16958

Last change on this file since 16958 was 16958, checked in by abeham, 5 years ago

#2457: adapted to trunk

File size: 5.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{76241AF2-B428-4127-805D-667F79983F0F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>UnitTests</RootNamespace>
11    <AssemblyName>UnitTests</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion>
16    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
17    <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
18    <IsCodedUITest>False</IsCodedUITest>
19    <TestProjectType>UnitTest</TestProjectType>
20    <NuGetPackageImportStamp>
21    </NuGetPackageImportStamp>
22    <TargetFrameworkProfile />
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25    <DebugSymbols>true</DebugSymbols>
26    <DebugType>full</DebugType>
27    <Optimize>false</Optimize>
28    <OutputPath>bin\Debug\</OutputPath>
29    <DefineConstants>DEBUG;TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34    <DebugType>pdbonly</DebugType>
35    <Optimize>true</Optimize>
36    <OutputPath>bin\Release\</OutputPath>
37    <DefineConstants>TRACE</DefineConstants>
38    <ErrorReport>prompt</ErrorReport>
39    <WarningLevel>4</WarningLevel>
40  </PropertyGroup>
41  <ItemGroup>
42    <Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
43      <HintPath>..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
44    </Reference>
45    <Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
46      <HintPath>..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
47    </Reference>
48    <Reference Include="System" />
49    <Reference Include="System.Core" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="Properties\AssemblyInfo.cs" />
53    <Compile Include="InformationAnalysisTest.cs" />
54  </ItemGroup>
55  <ItemGroup>
56    <None Include="packages.config" />
57  </ItemGroup>
58  <ItemGroup>
59    <ProjectReference Include="..\HeuristicLab.Analysis.FitnessLandscape\3.3\HeuristicLab.Analysis.FitnessLandscape-3.3.csproj">
60      <Project>{5fbdcd4a-3c2a-4ec6-83ce-34b29f43621a}</Project>
61      <Name>HeuristicLab.Analysis.FitnessLandscape-3.3</Name>
62    </ProjectReference>
63    <ProjectReference Include="..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
64      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
65      <Name>HeuristicLab.Analysis-3.3</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
68      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
69      <Name>HeuristicLab.Optimization-3.3</Name>
70    </ProjectReference>
71  </ItemGroup>
72  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
75    <PropertyGroup>
76      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
77    </PropertyGroup>
78    <Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props'))" />
79    <Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets'))" />
80  </Target>
81  <Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" />
82</Project>
Note: See TracBrowser for help on using the repository browser.