This repository was archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathIOTests.csproj
More file actions
59 lines (59 loc) · 2.95 KB
/
IOTests.csproj
File metadata and controls
59 lines (59 loc) · 2.95 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="TinyCLR_Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), BuildEnv.props))\BuildEnv.props" Condition="Exists('$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), BuildEnv.props))\BuildEnv.props')" />
<PropertyGroup>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<TargetFrameworkVersion>v4.4</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup>
<AssemblyName>Microsoft.SPOT.Platform.Tests.IOTests</AssemblyName>
<OutputType>Exe</OutputType>
<RootNamespace>IOTests</RootNamespace>
<ProjectTypeGuids>{b69e3092-b931-443c-abe7-7e7b65f2a37f};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{BF83A322-89EF-4710-B834-8831EC1C1D3C}</ProjectGuid>
<NoWarn>,1668</NoWarn>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Microsoft.SPOT.Platform.Tests.IOTests</StartupObject>
</PropertyGroup>
<Import Project="$(SPOCLIENT)\tools\Targets\Microsoft.SPOT.Test.CSharp.Targets" />
<ItemGroup>
<Compile Include="Master.cs" />
<Compile Include="DirectoryTests.cs" />
<Compile Include="FileTests.cs" />
<Compile Include="PathTests.cs" />
<Compile Include="DirectoryInfoTests.cs" />
<Compile Include="FileInfoTests.cs" />
<Compile Include="FileStreamTests.cs" />
<Compile Include="VolumeLabelTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.SPOT.Native">
<HintPath>$(BUILD_TREE_DLL)\Microsoft.SPOT.Native.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Hardware">
<HintPath>$(BUILD_TREE_DLL)\Microsoft.SPOT.Hardware.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.IO">
<HintPath>$(BUILD_TREE_DLL)\Microsoft.SPOT.IO.dll</HintPath>
</Reference>
<Reference Include="System.IO">
<HintPath>$(BUILD_TREE_DLL)\System.IO.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Platform.Test.MFTestRunner">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(BUILD_TEST_TREE_DLL)\Microsoft.SPOT.Platform.Test.MFTestRunner.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Platform.Test.MFUtility">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(BUILD_TEST_TREE_DLL)\Microsoft.SPOT.Platform.Test.MFUtility.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Platform.Tests.IOTestsHelper">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(BUILD_TEST_TREE_DLL)\Microsoft.SPOT.Platform.Tests.IOTestsHelper.dll</HintPath>
</Reference>
</ItemGroup>
</Project>