Skip to content

Commit

Permalink
Create .msi installer
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-wong committed Mar 21, 2022
1 parent 434c5e9 commit 087b53c
Show file tree
Hide file tree
Showing 27 changed files with 896 additions and 11 deletions.
Binary file modified .vs/passGen/v17/.suo
Binary file not shown.
6 changes: 6 additions & 0 deletions passGen.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ VisualStudioVersion = 17.1.32228.430
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "passGen", "passGen\passGen.csproj", "{A2C2DE6A-9F50-4CE4-B6C9-13520E292D6D}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "passGen_installer", "passGen_installer\passGen_installer.vdproj", "{C53E90C4-7745-48FD-BD6B-D6DDBFDE3C8D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -15,6 +17,10 @@ Global
{A2C2DE6A-9F50-4CE4-B6C9-13520E292D6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2C2DE6A-9F50-4CE4-B6C9-13520E292D6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2C2DE6A-9F50-4CE4-B6C9-13520E292D6D}.Release|Any CPU.Build.0 = Release|Any CPU
{C53E90C4-7745-48FD-BD6B-D6DDBFDE3C8D}.Debug|Any CPU.ActiveCfg = Debug
{C53E90C4-7745-48FD-BD6B-D6DDBFDE3C8D}.Debug|Any CPU.Build.0 = Debug
{C53E90C4-7745-48FD-BD6B-D6DDBFDE3C8D}.Release|Any CPU.ActiveCfg = Release
{C53E90C4-7745-48FD-BD6B-D6DDBFDE3C8D}.Release|Any CPU.Build.0 = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion passGen/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected void generate_pw_s_Click(object sender, EventArgs e)
int lengthOfPassword = 8;

// Generate a password with symbols, uppercase letters, lowercase letters, and numbers; symbols duplicated to increase likelihood of symbols being included
string valid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*-=()?_!@#$%^&*-=()?_";
string valid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@^&-_!@^&-_";
StringBuilder strB = new StringBuilder(100);
Random random = new Random();
while (0 < lengthOfPassword--)
Expand Down
7 changes: 3 additions & 4 deletions passGen/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
[assembly: AssemblyTitle("passGen")]
[assembly: AssemblyDescription("Simple password generator")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Josh")]
[assembly: AssemblyCompany("inoshishi")]
[assembly: AssemblyProduct("passGen")]
[assembly: AssemblyCopyright("Copyright © Josh 2017")]
[assembly: AssemblyCopyright("Copyright © inoshishi 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -35,5 +35,4 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]

[assembly: NeutralResourcesLanguage("en-US")]
Binary file not shown.
Binary file added passGen/bin/Release/passGen.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions passGen/bin/Release/passGen.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
Binary file added passGen/bin/Release/passGen.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
Binary file not shown.
Binary file not shown.
Binary file added passGen/obj/Release/passGen.Form1.resources
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
1 change: 1 addition & 0 deletions passGen/obj/Release/passGen.csproj.CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a107285212471692cd0f9ea7c61337a1f12225a5
13 changes: 13 additions & 0 deletions passGen/obj/Release/passGen.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\bin\Release\passGen.exe.config
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\bin\Release\passGen.exe
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\bin\Release\passGen.pdb
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\bin\Release\Microsoft.Data.Tools.Components.dll
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.csproj.AssemblyReference.cache
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.csproj.SuggestedBindingRedirects.cache
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.Form1.resources
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.Properties.Resources.resources
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.csproj.GenerateResource.cache
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.csproj.CoreCompileInputs.cache
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.csproj.CopyComplete
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.exe
C:\Users\joshu\OneDrive\Documents\GitHub\passGen\passGen\obj\Release\passGen.pdb
Binary file not shown.
Empty file.
Binary file added passGen/obj/Release/passGen.exe
Binary file not shown.
Binary file added passGen/obj/Release/passGen.pdb
Binary file not shown.
Binary file not shown.
13 changes: 7 additions & 6 deletions passGen/passGen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<SupportUrl>https://github.com/josh-wong/passGen/issues</SupportUrl>
<TargetCulture>en</TargetCulture>
<ProductName>passGen</ProductName>
<PublisherName>Josh</PublisherName>
<PublisherName>inoshishi</PublisherName>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
Expand All @@ -25,10 +26,11 @@
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>pg_icon_blue.ico</ApplicationIcon>
<ApplicationIcon>
</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<SignManifests>false</SignManifests>
<SignManifests>true</SignManifests>
</PropertyGroup>
<PropertyGroup>
<TargetZone>LocalIntranet</TargetZone>
Expand Down Expand Up @@ -74,6 +76,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -142,9 +146,6 @@
<ItemGroup>
<None Include="Resources\pg_icon_blue.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="pg_icon_blue.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="'$(SQLDBExtensionsRefPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="'$(SQLDBExtensionsRefPath)' == ''" />
Expand Down
Binary file removed passGen/pg_icon_blue.ico
Binary file not shown.
Binary file added passGen_installer/Release/passGen_installer.msi
Binary file not shown.
Binary file added passGen_installer/Release/setup.exe
Binary file not shown.
Loading

0 comments on commit 087b53c

Please sign in to comment.