DataJuggler.Tutorials.PasswordVault 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DataJuggler.Tutorials.PasswordVault --version 1.0.0
NuGet\Install-Package DataJuggler.Tutorials.PasswordVault -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="DataJuggler.Tutorials.PasswordVault" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DataJuggler.Tutorials.PasswordVault --version 1.0.0
#r "nuget: DataJuggler.Tutorials.PasswordVault, 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.
// Install DataJuggler.Tutorials.PasswordVault as a Cake Addin
#addin nuget:?package=DataJuggler.Tutorials.PasswordVault&version=1.0.0

// Install DataJuggler.Tutorials.PasswordVault as a Cake Tool
#tool nuget:?package=DataJuggler.Tutorials.PasswordVault&version=1.0.0

This is a NuGet package I created for a sample project, so the tutorial video can focus on the C# / SQL interactions and not the building of the app which takes a little time.

I kind of feel like the Bernie Madoff of tutorial videos since the instructions for using this NuGet package are:

YouTube video coming soon!

  1. Create a new Windows Form Application
  2. Create a SQL Server database named Password Vault
  3. Execute the SQL Script located at this URL: https://github.com/DataJuggler/PasswordVault/blob/master/SQL/Table%20Site%20And%20Procedures.sql
  4. Build a Connection String to the Password Vault database created in step 2, and set the value in the App.config in the project created in Step 1. tip: Clone DataTier.Net, and in the Tools direction is ConnectionStringBuilder, located here: https://github.com/DataJuggler/DataTier.Net
  5. Add this NuGet package: DataJuggler.Tutorials.PasswordVault
  6. Delete Form1.cs that was created in Step 1.
  7. In Program.cs, add a using statement for DataJuggler.Tutorials.PasswordVault.Forms;
  8. Modify the Main method in Program.cs to look like this:

[STAThread] static void Main() {
Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false);

// create a new MainForm
MainForm form = new MainForm();

// set the context
ApplicationContext context = new ApplicationContext(form);
           
// run the app
Application.Run(context);

}

Step 9. Your done! Celebrate, dance, enjoy, Star on GitHub or Like on YouTube.

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  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.

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.4 680 8/3/2019
1.0.3 547 8/3/2019
1.0.2 514 8/3/2019
1.0.1 534 8/3/2019
1.0.0 527 8/3/2019

This is the first release of this project