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 pathFileTests.csproj
More file actions
64 lines (64 loc) · 3.14 KB
/
FileTests.csproj
File metadata and controls
64 lines (64 loc) · 3.14 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
<?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.IO.FileTests</AssemblyName>
<OutputType>Exe</OutputType>
<RootNamespace>FileTests</RootNamespace>
<ProjectTypeGuids>{b69e3092-b931-443c-abe7-7e7b65f2a37f};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7C16CCB0-2B73-4739-B028-08DE6CE8FD7C}</ProjectGuid>
<NoWarn>,1668</NoWarn>
<TargetFrameworkVersion>v4.4</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Microsoft.SPOT.Platform.Tests.IOTests</StartupObject>
</PropertyGroup>
<Import Project="$(SPOCLIENT)\tools\Targets\Microsoft.SPOT.Test.CSharp.Targets" />
<ItemGroup>
<Compile Include="Copy.cs" />
<Compile Include="Create.cs" />
<Compile Include="Delete.cs" />
<Compile Include="Exists.cs" />
<Compile Include="GetSetAttributes.cs" />
<Compile Include="Master.cs" />
<Compile Include="Open_FM.cs" />
<Compile Include="OpenRead.cs" />
<Compile Include="OpenWrite.cs" />
<Compile Include="Open_FM_FA.cs" />
<Compile Include="Open_FM_FA_FS.cs" />
<Compile Include="ReadAllBytes.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>