Skip to content

Commit

Permalink
Solution-wide tweaks, Setup project fixes
Browse files Browse the repository at this point in the history
- Updating .gitignore to latest version provided by GitHub and adding PreRelease build time to list.
- Standardize on program name ("WinNUT Client"). Upon applying value to main form .Text property, this caused Visual Studio to rearrange resource files and change a few properties that don't seem to have any impact on the program.
- Removed extraneous "Utils" folder from main project
- Corrected build output folder of Client-Common project in PreRelease build mode
- Corrected solution file to make sure all prerequisite projects compile before the Setup project.
- Nearly full reset of .vdproj Setup project file due to "Unable to update the dependencies" error. Seems to have fixed some other lingering issues. Made sure debug output is included in PreRelease builds. MSI installation seems somewhat faster as well...?
  • Loading branch information
gbakeman committed Feb 4, 2024
1 parent a2a439e commit 842307a
Show file tree
Hide file tree
Showing 18 changed files with 2,682 additions and 2,650 deletions.
41 changes: 37 additions & 4 deletions .gitignore
@@ -1,11 +1,10 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

# User-specific files
*.rsuser
.suo
*.suo
*.user
*.userosscache
Expand All @@ -22,6 +21,7 @@ mono_crash.*
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
PreRelease/
x64/
x86/
[Ww][Ii][Nn]32/
Expand Down Expand Up @@ -91,6 +91,7 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
Expand Down Expand Up @@ -294,6 +295,17 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp

# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp

# Visual Studio 6 technical files
*.ncb
*.aps

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
Expand Down Expand Up @@ -350,6 +362,9 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/

# BeatPulse healthcheck temp database
healthchecksdb

Expand All @@ -361,6 +376,24 @@ MigrationBackup/

# Fody - auto-generated XML schema
FodyWeavers.xsd
*.pdb

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
*.cab
*.msi
WinNUT_V2/.vs
*.msix
*.msm
*.msp

# JetBrains Rider
*.sln.iml

0 comments on commit 842307a

Please sign in to comment.