USGI 1.0.0

dotnet add package USGI --version 1.0.0
                    
NuGet\Install-Package USGI -Version 1.0.0
                    
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="USGI" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="USGI" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="USGI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add USGI --version 1.0.0
                    
#r "nuget: USGI, 1.0.0"
                    
#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.
#:package USGI@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=USGI&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=USGI&version=1.0.0
                    
Install as a Cake Tool

<!DOCTYPE html> <html> <head> <title>Auth Application</title> <style> /* CSS styles for the library catalog */ body { font-family: Arial, sans-serif; }

    h1 {
        text-align: center;
        color: #333;
    }

    .book {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .book h2 {
        margin-top: 0;
        color: #555;
    }

    .book p {
        margin: 0;
        color: #777;
    }
</style>

</head> <body> <h1>Auth Application</h1>

<div class="book">
    <h2>Application</h2>
    <p>Author: PeterJames</p>
    <p>Publication Date: 2023</p>
    <p>Expression: Ψ(x, t) = ∫ Φ(k) e^(i(kx - ωt)) dk

        Expression: var result = myList.Where(item => item.Length > 5).Select(item => item.ToUpper()).ToList();

Explanation:

var is a keyword in C# that allows the compiler to infer the type of the variable based on the expression on the right-hand side. In this case, it will infer the type of the variable "result" based on the outcome of the expression. myList is an example of a collection (e.g., List<string>) containing elements that will be used in the expression. Where is a LINQ extension method that filters the elements of the collection based on a given condition. In this case, it filters items where the length is greater than 5. item represents the current element being evaluated in the Where method. ⇒ is the lambda operator, which separates the input parameters from the expression body in a lambda function. item.Length > 5 is the condition used in the Where method to filter the items. Select is another LINQ extension method that projects each element of a collection into a new form. item.ToUpper() is the expression within the Select method, which converts each item to uppercase using the ToUpper() method. ToList() is a method that converts the result of the LINQ expression into a new List. </p> </div>

</body> </html>

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0.0 299 5/30/2023