CoderFoundry_Tools 1.1.0

dotnet add package CoderFoundry_Tools --version 1.1.0
NuGet\Install-Package CoderFoundry_Tools -Version 1.1.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="CoderFoundry_Tools" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CoderFoundry_Tools --version 1.1.0
#r "nuget: CoderFoundry_Tools, 1.1.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.
// Install CoderFoundry_Tools as a Cake Addin
#addin nuget:?package=CoderFoundry_Tools&version=1.1.0

// Install CoderFoundry_Tools as a Cake Tool
#tool nuget:?package=CoderFoundry_Tools&version=1.1.0

CODER FOUNDRY

Hi guys this is Jason Twichell from Coder Foundry and I am making this simple package available to you for the following reasons:

  • I wanted to introduce the concept of downloading and using a NuGet package.

    A NuGet package represents someone else's work that has been made available to you as a download.

  • I like to encourage new students to write and publish their own NuGet packages.

    A custom and visible NuGet package is something that can be included in your Portfolio of work.

Curriculum Support

Namespaces:

  • CoderFoundry_Tools
  • CoderFoundry_Tools.Services
  • CoderFoundry_Tools.DBConnection

The following items have been included for you in this NuGet package

Example(s)

CoderFoundry_Tools.Services.BasicCFTImageService

using CoderFoundry_Tools.Services; 
 ...
 public void ConfigureServices(IServiceCollection services)  
 {
	 //Register our Image Service
	 services.AddScoped<ICFT_ImageService, BasicCFTImageService>(); 
 }

CoderFoundry_Tools.DBConnection.PostgreSQL

using CoderFoundry_Tools.DBConnection;
...
public void ConfigureServices(IServiceCollection services)
{
	services.AddDbContext<ApplicationDbContext>(options =>
	options.UseNpgsql(Connection.GetConnectionString(Configuration)));
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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. 
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.1.0 294 4/29/2021
1.0.0 238 4/29/2021

Initial release