Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WDACConfig v0.4.6 - new milestone #345

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ Harden-Windows-Security Module/bin/
WDACConfig/obj/
WDACConfig/.vs/
WDACConfig/bin/
WDACConfig/App/WDACConfig/.vs/
WDACConfig/WinUI3/.vs/
WDACConfig/WinUI3/bin/
WDACConfig/WinUI3/obj/
WDACConfig/WinUI3/Generated Files/
WDACConfig/WinUI3/signtool.exe
WDACConfig/WinUI3/WDACConfig_1.0.0.0_x64.msix
7 changes: 5 additions & 2 deletions Harden-Windows-Security Module/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dotnet_diagnostic.CA1310.severity = error
dotnet_diagnostic.CA1401.severity = error

# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = error
dotnet_diagnostic.CA1303.severity = silent

# CA1309: Use ordinal string comparison
dotnet_diagnostic.CA1309.severity = error
Expand Down Expand Up @@ -196,7 +196,7 @@ dotnet_diagnostic.CA1805.severity = error
dotnet_diagnostic.CA1806.severity = error

# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = error
dotnet_diagnostic.CA1819.severity = silent

# CA1834: Consider using 'StringBuilder.Append(char)' when applicable
dotnet_diagnostic.CA1834.severity = error
Expand Down Expand Up @@ -269,3 +269,6 @@ dotnet_diagnostic.IDE0120.severity = error

# IDE0110: Remove unnecessary discard
dotnet_diagnostic.IDE0110.severity = error

# CA2101: Specify marshaling for P/Invoke string arguments
dotnet_diagnostic.CA2101.severity = error
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,13 @@
"XDRs",
"Zune"
],
"dotnetAcquisitionExtension.enablePreviewFeatures": true
"dotnetAcquisitionExtension.enablePreviewFeatures": true,
"files.exclude": {
"**/.vs": true,
"**/bin": true,
"**/obj": true,
"**/Properties": true
}
},
"extensions": {
"recommendations": [
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 77 additions & 0 deletions Harden-Windows-Security Module/ICON-SVG-ADVANCED.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Harden-Windows-Security Module/ICON-SVG-SIMPLIFIED.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class CiToolRunner
/// Converts a 64-bit unsigned integer into a version type, used for converting the numbers from CiTool.exe output to proper versions.
/// </summary>
/// <param name="number">The 64-bit unsigned integer as a string.</param>
/// <returns>The version string in the format 'part1.part2.part3.part4'.</returns>
/// <returns>The parsed version</returns>
private static Version Measure(string number)
{
try
Expand Down
Loading
Loading