-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathkOS.Safe.Test.csproj
More file actions
121 lines (121 loc) · 5.58 KB
/
Copy pathkOS.Safe.Test.csproj
File metadata and controls
121 lines (121 loc) · 5.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C9A42A44-DDC8-4D6C-8A16-D7F30F494B46}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>kOS.Safe.Test</RootNamespace>
<AssemblyName>kOS.Safe.Test</AssemblyName>
<TargetFrameworkVersion>v4.5.1</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>
<Prefer32Bit>false</Prefer32Bit>
</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>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="NSubstitute, Version=1.8.1.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca">
<HintPath>..\packages\NSubstitute.1.8.1.0\lib\net35\NSubstitute.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Calculator\CalculatorScalarTest.cs" />
<Compile Include="Calculator\CalculatorStructureTest.cs" />
<Compile Include="Collections\MixedCollectionPrintingTest.cs" />
<Compile Include="Structures\BooleanValueTest.cs" />
<Compile Include="Structures\ScalarValueTest.cs" />
<Compile Include="Structures\StringValueTest.cs" />
<Compile Include="Structure\ClampSetSuffixTest.cs" />
<Compile Include="Collections\LexiconTest.cs" />
<Compile Include="Collections\ListValueTest.cs" />
<Compile Include="Structure\NoArgsSuffixTest.cs" />
<Compile Include="Opcode\FakeCpu.cs" />
<Compile Include="Opcode\OpcodeGetIndexText.cs" />
<Compile Include="Opcode\OpcodeSetIndexTest.cs" />
<Compile Include="Structure\SetSuffixTest.cs" />
<Compile Include="Structure\StructureSuffixIntegrationTest.cs" />
<Compile Include="Structure\StructureTest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestLogger.cs" />
<Compile Include="Structure\TwoArgsVoidSuffixTest.cs" />
<Compile Include="Collections\QueueValueTest.cs" />
<Compile Include="Collections\StackValueTest.cs" />
<Compile Include="Serialization\JSONFormatterTest.cs" />
<Compile Include="Serialization\TerminalFormatterTest.cs" />
<Compile Include="Collections\CollectionValueTest.cs" />
<Compile Include="Collections\RangeValueTest.cs" />
<Compile Include="Serialization\FormatterTest.cs" />
<Compile Include="Communication\MessageQueueTest.cs" />
<Compile Include="Communication\FakeCurrentTimeProvider.cs" />
<Compile Include="Collections\UniqueSetValueTest.cs" />
<Compile Include="Persistence\VolumePathTest.cs" />
<Compile Include="Persistence\GlobalPathTest.cs" />
<Compile Include="Persistence\ArchiveTest.cs" />
<Compile Include="Persistence\HarddiskTest.cs" />
<Compile Include="Persistence\VolumeTest.cs" />
<Compile Include="Persistence\CopyAndMoveTest.cs" />
<Compile Include="Persistence\HarddiskToArchiveCopyAndMoveTest.cs" />
<Compile Include="Persistence\HarddiskToHarddiskCopyAndMoveTest.cs" />
<Compile Include="Persistence\ArchiveAndHarddiskCopyAndMoveTest.cs" />
<Compile Include="Persistence\ArchiveToHarddiskCopyAndMoveTest.cs" />
<Compile Include="KS\ParserTest.cs" />
<Compile Include="Execution\BaseIntegrationTest.cs" />
<Compile Include="Execution\Noop.cs" />
<Compile Include="Execution\Config.cs" />
<Compile Include="Execution\Screen.cs" />
<Compile Include="Execution\SimpleTest.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\kOS.Safe\kOS.Safe.csproj">
<Project>{590FFDA8-7B44-4BC3-A12A-5FFE2BB7D8FD}</Project>
<Name>kOS.Safe</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</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>
-->
<ItemGroup />
<ItemGroup>
<Content Include="ProfilingSessions\Session20160127_233127.sdps" />
<Content Include="ProfilingSessions\Session20160127_233506.sdps" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup />
</Project>