forked from WildernessLabs/Clima
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
818 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<Project Sdk="Meadow.Sdk/1.1.0"> | ||
<PropertyGroup> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<Authors>Wilderness Labs, Inc</Authors> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AssemblyName>Clima</AssemblyName> | ||
<Company>Wilderness Labs, Inc</Company> | ||
<PackageProjectUrl>https://github.com/WildernessLabs/Clima</PackageProjectUrl> | ||
<PackageId>Meadow.Clima</PackageId> | ||
<RepositoryUrl>https://github.com/WildernessLabs/Clima</RepositoryUrl> | ||
<PackageTags>Meadow.Clima,Meadow,Clima,atmospheric,environmental,sensors,accelerator</PackageTags> | ||
<Version>0.1.0</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Library for the Meadow Clima IoT accelerator</Description> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>10.0</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Meadow.F7" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.ICs.IOExpanders.Mcp23xxx" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Atmospheric.Bme68x" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Environmental.Scd4x" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Gnss.NeoM8" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.SwitchingAnemometer" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.SwitchingRainGauge" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.WindVane" Version="*" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project Sdk="Meadow.Sdk/1.1.0"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
<OutputType>Library</OutputType> | ||
<AssemblyName>App</AssemblyName> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>9.0</LangVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\..\Maple\Source\Web.Maple.MapleServer\Driver\Web.Maple.MapleServer.csproj" /> | ||
<PackageReference Include="Meadow.F7" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Atmospheric.Bme68x" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.SwitchingAnemometer" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.SwitchingRainGauge" Version="*" /> | ||
<PackageReference Include="Meadow.Foundation.Sensors.Weather.WindVane" Version="*" /> | ||
<PackageReference Include="sqlite-net-static" Version="1.*" /> | ||
<PackageReference Include="System.Text.Json" Version="*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="meadow.config.yaml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<Import Project="..\CommonContracts\CommonContracts.projitems" Label="Shared" /> | ||
</Project> |