Mercurial > pub > ImplabNet
annotate Implab.Test/Implab.Test.csproj @ 240:fa6cbf4d8841 v3
refactoring, moving to dotnercore, simplifying promises
author | cin |
---|---|
date | Tue, 23 Jan 2018 19:39:21 +0300 |
parents | 8d5de4eb9c2c |
children | d82909310094 |
rev | line source |
---|---|
0 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
72 | 6 <ProductVersion>8.0.30703</ProductVersion> |
0 | 7 <SchemaVersion>2.0</SchemaVersion> |
8 <ProjectGuid>{63F92C0C-61BF-48C0-A377-8D67C3C661D0}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>Implab.Test</RootNamespace> | |
12 <AssemblyName>Implab.Test</AssemblyName> | |
155 | 13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
0 | 14 <FileAlignment>512</FileAlignment> |
15 <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | |
155 | 16 <TargetFrameworkProfile /> |
0 | 17 </PropertyGroup> |
18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
19 <DebugSymbols>true</DebugSymbols> | |
20 <DebugType>full</DebugType> | |
21 <Optimize>false</Optimize> | |
22 <OutputPath>bin\Debug\</OutputPath> | |
23 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
24 <ErrorReport>prompt</ErrorReport> | |
25 <WarningLevel>4</WarningLevel> | |
155 | 26 <Prefer32Bit>false</Prefer32Bit> |
0 | 27 </PropertyGroup> |
28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
29 <DebugType>pdbonly</DebugType> | |
30 <Optimize>true</Optimize> | |
31 <OutputPath>bin\Release\</OutputPath> | |
32 <DefineConstants>TRACE</DefineConstants> | |
33 <ErrorReport>prompt</ErrorReport> | |
34 <WarningLevel>4</WarningLevel> | |
155 | 35 <Prefer32Bit>false</Prefer32Bit> |
0 | 36 </PropertyGroup> |
75 | 37 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
38 <DebugSymbols>true</DebugSymbols> | |
39 <DebugType>full</DebugType> | |
40 <Optimize>false</Optimize> | |
41 <OutputPath>bin\Debug\</OutputPath> | |
42 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
43 <ErrorReport>prompt</ErrorReport> | |
44 <WarningLevel>4</WarningLevel> | |
155 | 45 <Prefer32Bit>false</Prefer32Bit> |
75 | 46 </PropertyGroup> |
47 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
48 <DebugType>pdbonly</DebugType> | |
49 <Optimize>true</Optimize> | |
50 <OutputPath>bin\Release\</OutputPath> | |
51 <DefineConstants>TRACE</DefineConstants> | |
52 <ErrorReport>prompt</ErrorReport> | |
53 <WarningLevel>4</WarningLevel> | |
155 | 54 <Prefer32Bit>false</Prefer32Bit> |
75 | 55 </PropertyGroup> |
0 | 56 <ItemGroup> |
57 <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> | |
58 <Reference Include="System" /> | |
59 <Reference Include="System.Core"> | |
60 <RequiredTargetFramework>3.5</RequiredTargetFramework> | |
61 </Reference> | |
62 </ItemGroup> | |
63 <ItemGroup> | |
64 <Compile Include="AsyncTests.cs" /> | |
188 | 65 <Compile Include="CancelationTests.cs" /> |
210 | 66 <Compile Include="Mock\MockPollingComponent.cs" /> |
67 <Compile Include="Mock\MockRunnableComponent.cs" /> | |
68 <Compile Include="PollingComponentTests.cs" /> | |
10 | 69 <Compile Include="PromiseHelper.cs" /> |
0 | 70 <Compile Include="Properties\AssemblyInfo.cs" /> |
188 | 71 <Compile Include="RunnableComponentTests.cs" /> |
0 | 72 </ItemGroup> |
73 <ItemGroup> | |
74 <ProjectReference Include="..\Implab\Implab.csproj"> | |
75 <Project>{99B95D0D-9CF9-4F70-8ADF-F4D0AA5CB0D9}</Project> | |
76 <Name>Implab</Name> | |
77 </ProjectReference> | |
78 </ItemGroup> | |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
210
diff
changeset
|
79 <ItemGroup /> |
0 | 80 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
81 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
82 Other similar extension points exist, see Microsoft.Common.targets. | |
83 <Target Name="BeforeBuild"> | |
84 </Target> | |
85 <Target Name="AfterBuild"> | |
86 </Target> | |
87 --> | |
88 </Project> |