forked from microsoft/Windows-iotcore-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
I2C_mpu6050.csproj
32 lines (32 loc) · 1.38 KB
/
I2C_mpu6050.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-->
<RuntimeIdentifier>win-arm</RuntimeIdentifier>
-->
<Platform>win-x64</Platform>
</PropertyGroup>
<Import Project="..\..\Common.CS.Props" />
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.20.1" />
<PackageReference Include="Mono.Options.Core" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Common\CS\Common.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Windows.Devices.DevicesLowLevelContract">
<HintPath>$(WindowsSdkPath)\Windows.Devices.DevicesLowLevelContract\3.0.0.0\Windows.Devices.DevicesLowLevelContract.winmd</HintPath>
<IsWinMDFile>true</IsWinMDFile>
</Reference>
<Reference Include="Windows.Foundation.FoundationContract">
<HintPath>$(WindowsSdkPath)\Windows.Foundation.FoundationContract\3.0.0.0\Windows.Foundation.FoundationContract.winmd</HintPath>
<IsWinMDFile>true</IsWinMDFile>
</Reference>
<Reference Include="Windows.Foundation.UniversalApiContract">
<HintPath>$(WindowsSdkPath)\Windows.Foundation.UniversalApiContract\7.0.0.0\Windows.Foundation.UniversalApiContract.winmd</HintPath>
<IsWinMDFile>true</IsWinMDFile>
</Reference>
</ItemGroup>
</Project>