Skip to content

Commit 8ab4491

Browse files
authored
Merge pull request #16 from FrApp42/dev/main
Doc & Config fixes
2 parents bb52b99 + d54966b commit 8ab4491

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

Logo.png

3.48 KB
Loading

System/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Install-Package FrApp42.System
1616
### Check if device is online
1717

1818
```csharp
19-
using namespace FrApp42.System.Net;
19+
using FrApp42.System.Net;
2020

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

3131
```csharp
32-
using namespace FrApp42.System.Computer.Shutdown;
32+
using FrApp42.System.Computer.Shutdown;
3333

3434
string hostname = "your-hostname";
3535

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

4848
```csharp
49-
using namespace FrApp42.System.Net;
49+
using FrApp42.System.Net;
5050

5151
string macAddress = "your-mac-address";
5252

System/System.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<AssemblyName>FrApp42.$(MSBuildProjectName)</AssemblyName>
88
<RootNamespace>FrApp42.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
99
<Title>FrApp42 System</Title>
10-
<Authors>FrApp42</Authors>
10+
<Authors>FrenchyApps42, Sikelio, AnthoDingo</Authors>
1111
<Copyright>GPLv3</Copyright>
1212
<PackageProjectUrl>https://github.com/FrApp42/Tools</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/FrApp42/Tools.git</RepositoryUrl>
@@ -18,13 +18,19 @@
1818
<PackageLicenseFile>LICENCE.md</PackageLicenseFile>
1919
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2020
<PackageReadmeFile>README.md</PackageReadmeFile>
21+
<Company>FrenchyApps42</Company>
22+
<PackageIcon>Logo.png</PackageIcon>
2123
</PropertyGroup>
2224

2325
<ItemGroup>
2426
<None Include="..\LICENCE.md">
2527
<Pack>True</Pack>
2628
<PackagePath>\</PackagePath>
2729
</None>
30+
<None Include="..\Logo.png">
31+
<Pack>True</Pack>
32+
<PackagePath>\</PackagePath>
33+
</None>
2834
</ItemGroup>
2935

3036
<ItemGroup>

Web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Install-Package FrApp42.Net
1414
### Make an API request
1515

1616
```csharp
17-
using namespace FrApp42.Web.API;
17+
using FrApp42.Web.API;
1818
using System.Text.Json.Serialization;
1919

2020
string url = "your-url";

Web/Web.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<AssemblyName>FrApp42.$(MSBuildProjectName)</AssemblyName>
88
<RootNamespace>FrApp42.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
99
<Title>FrApp42 Web</Title>
10-
<Authors>FrApp42</Authors>
10+
<Authors>FrenchyApps42, Sikelio, AnthoDingo</Authors>
1111
<Copyright>GPLv3</Copyright>
1212
<PackageProjectUrl>https://github.com/FrApp42/Tools</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/FrApp42/Tools.git</RepositoryUrl>
@@ -18,13 +18,19 @@
1818
<PackageLicenseFile>LICENCE.md</PackageLicenseFile>
1919
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2020
<PackageReadmeFile>README.md</PackageReadmeFile>
21+
<Company>FrenchyApps42</Company>
22+
<PackageIcon>Logo.png</PackageIcon>
2123
</PropertyGroup>
2224

2325
<ItemGroup>
2426
<None Include="..\LICENCE.md">
2527
<Pack>True</Pack>
2628
<PackagePath>\</PackagePath>
2729
</None>
30+
<None Include="..\Logo.png">
31+
<Pack>True</Pack>
32+
<PackagePath>\</PackagePath>
33+
</None>
2834
</ItemGroup>
2935

3036
<ItemGroup>

0 commit comments

Comments
 (0)