Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgedevs committed Jun 25, 2024
1 parent ece1cc5 commit 78fb56f
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="Assets\net-connected.bmp" />
<EmbeddedResource Include="Assets\net-disconnected.bmp" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Meadow.Foundation" Version="*" />
<PackageReference Include="Meadow.Foundation.Graphics.MicroLayout" Version="*" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meadow.Desktop" Version="*" />
<PackageReference Include="Meadow.Foundation" Version="*" />
<PackageReference Include="Meadow.Foundation.Graphics.MicroLayout" Version="*" />
<PackageReference Include="Meadow.Foundation.Sensors.Hid.Keyboard" Version="*" />
</ItemGroup>

<ItemGroup>
<None Include="app.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\___safeprojectname___.Core\___safeprojectname___.Core.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meadow.F7" Version="*" />
<PackageReference Include="Meadow.Foundation" Version="*" />
<PackageReference Include="Meadow.ProjectLab" Version="*" />
</ItemGroup>

<ItemGroup>
<None Update="meadow.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand All @@ -25,7 +23,6 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\___safeprojectname___.Core\___safeprojectname___.Core.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,16 @@
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meadow.Foundation" Version="*" />
<PackageReference Include="Meadow.Foundation.Displays.Gtk" Version="*" />
<PackageReference Include="Meadow.Linux" Version="*" />
</ItemGroup>

<ItemGroup>
<None Include="app.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\___safeprojectname___.Core\___safeprojectname___.Core.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meadow.Desktop" Version="*" />
<PackageReference Include="Meadow.Foundation" Version="*" />
<PackageReference Include="Meadow.Foundation.Graphics.MicroLayout" Version="*" />
</ItemGroup>
<ItemGroup>
<None Include="app.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Uncomment additional options as needed.
# To learn more about these config options, including custom application configuration settings, check out the Application Settings Configuration documentation.
# http://developer.wildernesslabs.co/Meadow/Meadow.OS/Configuration/Application_Settings_Configuration/

# Logging configuration.
Logging:

# Adjust the level of logging detail.
LogLevel:

# Trace, Debug, Information, Warning, or Error
Default: Information

# Meadow.Cloud configuration.
MeadowCloud:

# Enable Logging, Events, Command + Control
# Enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Meadow;
using System.Threading.Tasks;

namespace MeadowApplication.Template;

Expand All @@ -19,9 +20,4 @@ public override Task Run()

return Task.CompletedTask;
}

static async Task Main(string[] args)
{
await MeadowOS.Start(args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@
<PackageReference Include="Meadow.Linux" Version="*" />
<PackageReference Include="Meadow.Foundation" Version="*" />
</ItemGroup>
<ItemGroup>
<None Include="app.config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using Meadow;
using System.Threading.Tasks;

namespace MeadowApplication.Template;

public class Program
{
public static async Task Main(string[] args)
{
await MeadowOS.Start(args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
<ItemGroup>
<PackageReference Include="Meadow.Foundation" Version="*" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
<ItemGroup>
<PackageReference Include="Meadow.Foundation" Version="*" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public static async Task Main(string[] args)
{
await MeadowOS.Start(args);
}
}
}

0 comments on commit 78fb56f

Please sign in to comment.