Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Lora
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
MONICA
Lora Gateway
Lora
Commits
ba17db02
Commit
ba17db02
authored
6 years ago
by
philip.schell
Browse files
Options
Downloads
Patches
Plain Diff
[v1.6.1] Update to local librarys
parent
3543ce96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Lora.sln
+24
-0
24 additions, 0 deletions
Lora.sln
Lora/Lora.csproj
+12
-12
12 additions, 12 deletions
Lora/Lora.csproj
Lora/Properties/AssemblyInfo.cs
+4
-3
4 additions, 3 deletions
Lora/Properties/AssemblyInfo.cs
Lora/packages.config
+0
-6
0 additions, 6 deletions
Lora/packages.config
with
40 additions
and
21 deletions
Lora.sln
+
24
−
0
View file @
ba17db02
...
...
@@ -15,6 +15,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utils", "..\Utils\Utils\Uti
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utils-IoT", "..\Utils\Utils-IoT\Utils-IoT\Utils-IoT.csproj", "{B870E4D5-6806-4A0B-B233-8907EEDC5AFC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unosquare.Swan.Lite", "..\Librarys\RaspberryIO\Unosquare.Swan.Lite\Unosquare.Swan.Lite.csproj", "{AB015683-62E5-47F1-861F-6D037F9C6433}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unosquare.Swan", "..\Librarys\RaspberryIO\Unosquare.Swan\Unosquare.Swan.csproj", "{2EA5E3E4-F8C8-4742-8C78-4B070AFCFB73}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unosquare.RaspberryIO", "..\Librarys\RaspberryIO\Unosquare.RaspberryIO\Unosquare.RaspberryIO.csproj", "{8C5D4DE9-377F-4EC8-873D-6EEF15F43516}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mono.Posix", "..\Librarys\Mono.Posix\Mono.Posix\Mono.Posix.csproj", "{E2CA132E-E85C-40AD-BE94-B138AA68772B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
...
...
@@ -45,6 +53,22 @@ Global
{B870E4D5-6806-4A0B-B233-8907EEDC5AFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B870E4D5-6806-4A0B-B233-8907EEDC5AFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B870E4D5-6806-4A0B-B233-8907EEDC5AFC}.Release|Any CPU.Build.0 = Release|Any CPU
{AB015683-62E5-47F1-861F-6D037F9C6433}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB015683-62E5-47F1-861F-6D037F9C6433}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB015683-62E5-47F1-861F-6D037F9C6433}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB015683-62E5-47F1-861F-6D037F9C6433}.Release|Any CPU.Build.0 = Release|Any CPU
{2EA5E3E4-F8C8-4742-8C78-4B070AFCFB73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2EA5E3E4-F8C8-4742-8C78-4B070AFCFB73}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2EA5E3E4-F8C8-4742-8C78-4B070AFCFB73}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2EA5E3E4-F8C8-4742-8C78-4B070AFCFB73}.Release|Any CPU.Build.0 = Release|Any CPU
{8C5D4DE9-377F-4EC8-873D-6EEF15F43516}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C5D4DE9-377F-4EC8-873D-6EEF15F43516}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C5D4DE9-377F-4EC8-873D-6EEF15F43516}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C5D4DE9-377F-4EC8-873D-6EEF15F43516}.Release|Any CPU.Build.0 = Release|Any CPU
{E2CA132E-E85C-40AD-BE94-B138AA68772B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E2CA132E-E85C-40AD-BE94-B138AA68772B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E2CA132E-E85C-40AD-BE94-B138AA68772B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E2CA132E-E85C-40AD-BE94-B138AA68772B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
This diff is collapsed.
Click to expand it.
Lora/Lora.csproj
+
12
−
12
View file @
ba17db02
...
...
@@ -40,15 +40,6 @@
<Reference
Include=
"System.Data"
/>
<Reference
Include=
"System.Net.Http"
/>
<Reference
Include=
"System.Xml"
/>
<Reference
Include=
"Unosquare.RaspberryIO, Version=0.14.0.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Unosquare.Raspberry.IO.0.14.0\lib\net452\Unosquare.RaspberryIO.dll
</HintPath>
</Reference>
<Reference
Include=
"Unosquare.Swan, Version=0.28.1.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Unosquare.Swan.0.28.1\lib\net452\Unosquare.Swan.dll
</HintPath>
</Reference>
<Reference
Include=
"Unosquare.Swan.Lite, Version=0.28.0.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Unosquare.Swan.Lite.0.28.0\lib\net452\Unosquare.Swan.Lite.dll
</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile
Include=
"Events\Ic800ALoraClientEvent.cs"
/>
...
...
@@ -66,14 +57,23 @@
<Compile
Include=
"LoraController.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"packages.config"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\..\Librarys\litjson\litjson\litjson_4.7.1.csproj"
>
<Project>
{91a14cd2-2940-4500-8193-56d37edddbaa}
</Project>
<Name>
litjson_4.7.1
</Name>
</ProjectReference>
<ProjectReference
Include=
"..\..\Librarys\RaspberryIO\Unosquare.RaspberryIO\Unosquare.RaspberryIO.csproj"
>
<Project>
{8c5d4de9-377f-4ec8-873d-6eef15f43516}
</Project>
<Name>
Unosquare.RaspberryIO
</Name>
</ProjectReference>
<ProjectReference
Include=
"..\..\Librarys\RaspberryIO\Unosquare.Swan.Lite\Unosquare.Swan.Lite.csproj"
>
<Project>
{ab015683-62e5-47f1-861f-6d037f9c6433}
</Project>
<Name>
Unosquare.Swan.Lite
</Name>
</ProjectReference>
<ProjectReference
Include=
"..\..\Librarys\RaspberryIO\Unosquare.Swan\Unosquare.Swan.csproj"
>
<Project>
{2ea5e3e4-f8c8-4742-8c78-4b070afcfb73}
</Project>
<Name>
Unosquare.Swan
</Name>
</ProjectReference>
<ProjectReference
Include=
"..\..\Utils\Bot-Utils\Bot-Utils\Bot-Utils.csproj"
>
<Project>
{bb7bfcb5-3db0-49e1-802a-3ce3eecc59f9}
</Project>
<Name>
Bot-Utils
</Name>
...
...
This diff is collapsed.
Click to expand it.
Lora/Properties/AssemblyInfo.cs
+
4
−
3
View file @
ba17db02
...
...
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyProduct
(
"Lora"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2018 -
29
.0
1
.2019"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2018 -
17
.0
2
.2019"
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
...
...
@@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"1.6.
0
"
)]
[
assembly
:
AssemblyFileVersion
(
"1.6.
0
"
)]
[
assembly
:
AssemblyVersion
(
"1.6.
1
"
)]
[
assembly
:
AssemblyFileVersion
(
"1.6.
1
"
)]
/*
* 1.1.0 Now awaiing Battery as Double and fix the sending twise issue
...
...
@@ -44,4 +44,5 @@ using System.Runtime.InteropServices;
* 1.4.2 Adding test for LoraBinary
* 1.5.0 Add support for IC880A board
* 1.6.0 Fixing binary data transmission
* 1.6.1 Update to local librarys
*/
This diff is collapsed.
Click to expand it.
Lora/packages.config
deleted
100644 → 0
+
0
−
6
View file @
3543ce96
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
packages
>
<
package
id
=
"Unosquare.Raspberry.IO"
version
=
"0.14.0"
targetFramework
=
"net471"
/>
<
package
id
=
"Unosquare.Swan"
version
=
"0.28.1"
targetFramework
=
"net471"
/>
<
package
id
=
"Unosquare.Swan.Lite"
version
=
"0.28.0"
targetFramework
=
"net471"
/>
</
packages
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment