Skip to content

Commit

Permalink
Merge pull request #16 from FrApp42/dev/main
Browse files Browse the repository at this point in the history
Doc & Config fixes
  • Loading branch information
sikelio authored Jul 30, 2024
2 parents bb52b99 + d54966b commit 8ab4491
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
Binary file added Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions System/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Install-Package FrApp42.System
### Check if device is online

```csharp
using namespace FrApp42.System.Net;
using FrApp42.System.Net;

string address = "your-address";
string timeout = 5;
Expand All @@ -29,7 +29,7 @@ bool isOnline = online.Check();
### Shutdown through SMB (Windows Only)

```csharp
using namespace FrApp42.System.Computer.Shutdown;
using FrApp42.System.Computer.Shutdown;

string hostname = "your-hostname";

Expand All @@ -46,7 +46,7 @@ ShutdownResult shutdownResult = await shutdown.Run();
### Wake up a computer (WOL)

```csharp
using namespace FrApp42.System.Net;
using FrApp42.System.Net;

string macAddress = "your-mac-address";

Expand Down
8 changes: 7 additions & 1 deletion System/System.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AssemblyName>FrApp42.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>FrApp42.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<Title>FrApp42 System</Title>
<Authors>FrApp42</Authors>
<Authors>FrenchyApps42, Sikelio, AnthoDingo</Authors>
<Copyright>GPLv3</Copyright>
<PackageProjectUrl>https://github.com/FrApp42/Tools</PackageProjectUrl>
<RepositoryUrl>https://github.com/FrApp42/Tools.git</RepositoryUrl>
Expand All @@ -18,13 +18,19 @@
<PackageLicenseFile>LICENCE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Company>FrenchyApps42</Company>
<PackageIcon>Logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="..\LICENCE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Install-Package FrApp42.Net
### Make an API request

```csharp
using namespace FrApp42.Web.API;
using FrApp42.Web.API;
using System.Text.Json.Serialization;

string url = "your-url";
Expand Down
8 changes: 7 additions & 1 deletion Web/Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AssemblyName>FrApp42.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>FrApp42.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<Title>FrApp42 Web</Title>
<Authors>FrApp42</Authors>
<Authors>FrenchyApps42, Sikelio, AnthoDingo</Authors>
<Copyright>GPLv3</Copyright>
<PackageProjectUrl>https://github.com/FrApp42/Tools</PackageProjectUrl>
<RepositoryUrl>https://github.com/FrApp42/Tools.git</RepositoryUrl>
Expand All @@ -18,13 +18,19 @@
<PackageLicenseFile>LICENCE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Company>FrenchyApps42</Company>
<PackageIcon>Logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="..\LICENCE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 8ab4491

Please sign in to comment.