Skip to content

Commit 842307a

Browse files
committed
Solution-wide tweaks, Setup project fixes
- 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...?
1 parent a2a439e commit 842307a

18 files changed

+2682
-2650
lines changed

.gitignore

+37-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.rsuser
8-
.suo
98
*.suo
109
*.user
1110
*.userosscache
@@ -22,6 +21,7 @@ mono_crash.*
2221
[Dd]ebugPublic/
2322
[Rr]elease/
2423
[Rr]eleases/
24+
PreRelease/
2525
x64/
2626
x86/
2727
[Ww][Ii][Nn]32/
@@ -91,6 +91,7 @@ StyleCopReport.xml
9191
*.tmp_proj
9292
*_wpftmp.csproj
9393
*.log
94+
*.tlog
9495
*.vspscc
9596
*.vssscc
9697
.builds
@@ -294,6 +295,17 @@ node_modules/
294295
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
295296
*.vbw
296297

298+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
299+
*.vbp
300+
301+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
302+
*.dsw
303+
*.dsp
304+
305+
# Visual Studio 6 technical files
306+
*.ncb
307+
*.aps
308+
297309
# Visual Studio LightSwitch build output
298310
**/*.HTMLClient/GeneratedArtifacts
299311
**/*.DesktopClient/GeneratedArtifacts
@@ -350,6 +362,9 @@ ASALocalRun/
350362
# Local History for Visual Studio
351363
.localhistory/
352364

365+
# Visual Studio History (VSHistory) files
366+
.vshistory/
367+
353368
# BeatPulse healthcheck temp database
354369
healthchecksdb
355370

@@ -361,6 +376,24 @@ MigrationBackup/
361376

362377
# Fody - auto-generated XML schema
363378
FodyWeavers.xsd
364-
*.pdb
379+
380+
# VS Code files for those working on multiple tools
381+
.vscode/*
382+
!.vscode/settings.json
383+
!.vscode/tasks.json
384+
!.vscode/launch.json
385+
!.vscode/extensions.json
386+
*.code-workspace
387+
388+
# Local History for Visual Studio Code
389+
.history/
390+
391+
# Windows Installer files from build outputs
392+
*.cab
365393
*.msi
366-
WinNUT_V2/.vs
394+
*.msix
395+
*.msm
396+
*.msp
397+
398+
# JetBrains Rider
399+
*.sln.iml

0 commit comments

Comments
 (0)