This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco install visualstudio2017professional --add Microsoft.Net.Component.4.6.2.SDK;Microsoft.Net.Component.4.6.2.TargetingPack;Microsoft.VisualStudio.Workload.Data;Microsoft.VisualStudio.Workload.ManagedDesktop;Microsoft.VisualStudio.Workload.NetCoreTools;Microsoft.VisualStudio.Workload.NetWeb;Microsoft.VisualStudio.Workload.Office;Microsoft.VisualStudio.Workload.Universal;Microsoft.VisualStudio.Workload.NativeDesktop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
WarningParser parser = new WarningParser(); | |
var lines = parser.GetRows(@"C:\Users\cwigley\Downloads\warnings.txt"); | |
var allowed = parser.GetAllowed(lines).OrderBy(p => p.From).ThenBy(p => p.To).ThenBy(p => p.VisibleMembers.Types[0].Name).ToList(); | |
var reconciled = parser.Reconcile(allowed); | |
AllowedSerializer serializer = new AllowedSerializer(); | |
var result = serializer.GetEntries(reconciled); | |
result.Dump(); | |
File.WriteAllText(@"c:\users\cwigley\downloads\nsconfig.txt",result); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Disable-UAC | |
Enable-MicrosoftUpdate | |
cinst VisualStudio2013Ultimate -InstallArguments "/Features:'Blend LightSwitch VC_MFC_Libraries OfficeDeveloperTools SQL WebTools Win8SDK SilverLight_Developer_Kit WindowsPhone80'" | |
cinst VS2013.3 | |
cinst 7zip | |
cinst autohotkey | |
cinst ccleaner |