DataJuggler.Tutorials.PasswordVault
1.0.0
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
<PackageReference Include="DataJuggler.Tutorials.PasswordVault" Version="1.0.0" />
paket add DataJuggler.Tutorials.PasswordVault --version 1.0.0
#r "nuget: DataJuggler.Tutorials.PasswordVault, 1.0.0"
// 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!
- Create a new Windows Form Application
- Create a SQL Server database named Password Vault
- Execute the SQL Script located at this URL: https://github.com/DataJuggler/PasswordVault/blob/master/SQL/Table%20Site%20And%20Procedures.sql
- 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
- Add this NuGet package: DataJuggler.Tutorials.PasswordVault
- Delete Form1.cs that was created in Step 1.
- In Program.cs, add a using statement for DataJuggler.Tutorials.PasswordVault.Forms;
- 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 | Versions 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. |
-
- DataJuggler.Core.UltimateHelper (>= 1.3.3)
- DataJuggler.Net (>= 5.5.1)
- DataJuggler.Win.Controls (>= 5.5.1)
- XmlMirror.RunTime (>= 2.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
This is the first release of this project