Skip to content

Commit

Permalink
Add raspi project
Browse files Browse the repository at this point in the history
  • Loading branch information
sersoft-intern committed Apr 23, 2024
1 parent 60343cd commit b3ce1bf
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ server/*.exe
server/**/[Bb]in/
server/**/[Oo]bj/
server/data/*.sqlite*

raspi/*.exe
raspi/**/[Bb]in/
raspi/**/[Oo]bj/
13 changes: 13 additions & 0 deletions raspi/SensorPi/.idea/.idea.SensorPi/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions raspi/SensorPi/.idea/.idea.SensorPi/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions raspi/SensorPi/SensorPi.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SensorPi", "SensorPi\SensorPi.csproj", "{CC07DD3A-23ED-4A80-B424-DF7ED1814A52}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC07DD3A-23ED-4A80-B424-DF7ED1814A52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC07DD3A-23ED-4A80-B424-DF7ED1814A52}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC07DD3A-23ED-4A80-B424-DF7ED1814A52}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC07DD3A-23ED-4A80-B424-DF7ED1814A52}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions raspi/SensorPi/SensorPi/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// See https://aka.ms/new-console-template for more information

Console.WriteLine("Hello, World!");
10 changes: 10 additions & 0 deletions raspi/SensorPi/SensorPi/SensorPi.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>

0 comments on commit b3ce1bf

Please sign in to comment.