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 pathDevice.csproj
More file actions
59 lines (59 loc) · 2.91 KB
/
Device.csproj
File metadata and controls
59 lines (59 loc) · 2.91 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
<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.Test.SslClient</AssemblyName>
<OutputType>Exe</OutputType>
<RootNamespace>SslClient</RootNamespace>
<ProjectTypeGuids>{b69e3092-b931-443c-abe7-7e7b65f2a37f};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{53D523C3-8ADD-46DD-B379-2504E9CF0C1F}</ProjectGuid>
<NoWarn>,1668</NoWarn>
</PropertyGroup>
<Import Project="$(SPOCLIENT)\tools\Targets\Microsoft.SPOT.Test.CSharp.Targets" />
<ItemGroup>
<Compile Include="CertificatesAndCAs.cs" />
<Compile Include="Master.cs" />
<Compile Include="SslTests.cs" />
<Compile Include="SslClient.cs" />
<Compile Include="SslServer.cs" />
<Compile Include="SslTestTable.cs" />
<Compile Include="TestManager.cs" />
<Compile Include="TestProxy.cs" />
<Compile Include="TestUtilities.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.Net">
<HintPath>$(BUILD_TREE_DLL)\Microsoft.SPOT.Net.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Net.Security">
<HintPath>$(BUILD_TREE_DLL)\Microsoft.SPOT.Net.Security.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Platform.Test.MFTestRunner">
<HintPath>$(BUILD_TEST_TREE_DLL)\Microsoft.SPOT.Platform.Test.MFTestRunner.dll</HintPath>
</Reference>
<Reference Include="Microsoft.SPOT.Platform.Test.MFUtility">
<HintPath>$(BUILD_TEST_TREE_DLL)\Microsoft.SPOT.Platform.Test.MFUtility.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>$(BUILD_TREE_DLL)\System.dll</HintPath>
</Reference>
<Reference Include="System.Security">
<HintPath>$(BUILD_TREE_DLL)\System.Security.dll</HintPath>
</Reference>
<Reference Include="System.Net.Security">
<HintPath>$(BUILD_TREE_DLL)\System.Net.Security.dll</HintPath>
</Reference>
</ItemGroup>
</Project>