-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetFrames.EmbeddedClient.csproj
More file actions
39 lines (39 loc) · 1.61 KB
/
Copy pathNetFrames.EmbeddedClient.csproj
File metadata and controls
39 lines (39 loc) · 1.61 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
<Project Sdk="Meadow.Sdk/1.1.0">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<OutputType>Library</OutputType>
<AssemblyName>App</AssemblyName>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\img_logo.bmp" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\img_logo.bmp" />
<EmbeddedResource Include="Assets\img_sample.jpg" />
</ItemGroup>
<ItemGroup>
<!--<PackageReference Include="Meadow.ProjectLab" Version="2.4.0.4-beta" />-->
<PackageReference Include="Meadow.F7" Version="2.5.0" />
<PackageReference Include="Meadow.Foundation.Displays.TftSpi" Version="2.5.0" />
<PackageReference Include="Meadow.Foundation.Graphics.MicroLayout" Version="2.5.0" />
<PackageReference Include="Meadow.Logging.LogProviders" Version="2.5.0" />
<PackageReference Include="SimpleJpegDecoder" Version="0.*" />
</ItemGroup>
<ItemGroup>
<None Update="meadow.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="app.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="app.build.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="wifi.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>