-
Notifications
You must be signed in to change notification settings - Fork 1
/
MeadowCCS811.fsproj
47 lines (47 loc) · 1.91 KB
/
MeadowCCS811.fsproj
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
<Project Sdk="Meadow.Sdk/1.1.0">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<OutputType>Library</OutputType>
<AssemblyName>App</AssemblyName>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="arrow-up.bmp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="arrow-down.bmp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<Content Include="wifi.config.yaml" />
<Content Include="meadow.config.yaml" />
<Content Include="app.config.yaml" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Elmish" Version="4.0.2" />
<PackageReference Include="Meadow" Version="1.*" />
<PackageReference Include="Meadow.Contracts" Version="1.*" />
<PackageReference Include="Meadow.Foundation" Version="1.*" />
<PackageReference Include="Meadow.F7" Version="1.*" />
<PackageReference Include="Meadow.Foundation.Graphics.MicroGraphics" Version="1.*" />
<PackageReference Include="Meadow.Foundation.Displays.TftSpi" Version="1.*" />
<PackageReference Include="Meadow.Foundation.Sensors.Atmospheric.Ccs811" Version="1.*" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Content Update="meadow.config.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="app.config.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="wifi.config.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>