Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web-1.1.0 #19

Merged
merged 4 commits into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified 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: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ This repos contains tool classes in C# for multiple types of usage.
## Available packages

* `FrApp42.System` - [Link](https://www.nuget.org/packages/FrApp42.System)
* Avake: Awake class from PowerToys
* IsOnline: Ping a device with it's hostname or ip address to check if it's online
* Shutdown: Shutdown a device through SMB with it's hostname or ip address. It only work for Windows devices.
* WakeOnLan: Power on a device with it mac address.

* `FrApp42.Web` - [Link](https://www.nuget.org/packages/FrApp42.Web)
* Request: Make API request for any of your C# projects. ⚠️ *SOAP requests are not supported.* ⚠️

## Authors
* [AnthoDingo](https://github.com)
* [Sikelio](https://github.com)

## Licence

This project is under GPLv3 licence
4 changes: 2 additions & 2 deletions System/System.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Company>FrenchyApps42</Company>
<PackageIcon>Logo.png</PackageIcon>
<PackageIcon>logo.png</PackageIcon>
<Version>1.0.2</Version>
<AssemblyVersion>1.0.2</AssemblyVersion>
<PackageReleaseNotes>Implement Awake from Microsoft Powertoys</PackageReleaseNotes>
Expand All @@ -31,7 +31,7 @@
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Logo.png">
<None Include="..\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
Expand Down
6 changes: 3 additions & 3 deletions Web/Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Company>FrenchyApps42</Company>
<PackageIcon>Logo.png</PackageIcon>
<Version>1.0.1</Version>
<PackageIcon>logo.png</PackageIcon>
<Version>1.1.0</Version>
</PropertyGroup>

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