Fritz 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Fritz --version 1.0.2
NuGet\Install-Package Fritz -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fritz" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fritz --version 1.0.2
#r "nuget: Fritz, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fritz as a Cake Addin
#addin nuget:?package=Fritz&version=1.0.2

// Install Fritz as a Cake Tool
#tool nuget:?package=Fritz&version=1.0.2

#Fritz.NET

Description

This is the FRITZ!Box free and open-source TR064 implementation.

Example

Write phonebook to csv file

  1. Open Visual Studio
  2. Create a new Console App
  3. Add the Fritz NuGet package to your project.
       PM> Install-Package Fritz -Version 1.0.2
  1. Add the following code to the main method:
        namespace ConsoleApp
        {
            class Program
            {
                static void Main(string[] args)
                {
                    var fritzBox = new FritzClient()
                    {
                        UserName = "{YOUR_USERNAME}",
                        Password = "{YOUR_PASSWORD}"
                    };
                    
                    // Write csv file to the application folder
                    fritzBox.WritePhonebookCsv();
                }
            }
        }
  1. Run the program

License

Licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 262 10/26/2023
1.1.0 123 10/22/2023
1.0.6 476 9/29/2021
1.0.5 300 9/22/2021
1.0.4 306 9/17/2021
1.0.3 318 9/16/2021
1.0.2 313 8/21/2021
1.0.1 1,159 2/17/2018
1.0.0 990 2/12/2018

Bug fixes and design improvement.