This file contains 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
# | |
# Usage: | |
# | |
# python trimwhitespace.py . .*\.js$ | |
# | |
import argparse | |
import os | |
import re | |
parser = argparse.ArgumentParser(description='Trims trailing whitespace.') |
This file contains 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
using System; | |
using System.Reflection; | |
using Changelog.Annotations; | |
using Changelog.Properties; | |
namespace Namespace | |
{ | |
public class SettingsViewModelBase : ViewModelBase, ICloneable | |
{ | |
public void Load() |
This file contains 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
Microsoft (R) Build Engine Version 4.0.30319.1 | |
[Microsoft .NET Framework, Version 4.0.30319.296] | |
Copyright (C) Microsoft Corporation 2007. All rights reserved. | |
Build started 2013-02-12 16:40:45. | |
Project "C:\dev\commandline\CommandLine.sln" on node 1 (Build target(s)). | |
ValidateSolutionConfiguration: | |
Building solution configuration "Release|Any CPU". | |
Project "C:\dev\commandline\CommandLine.sln" (1) is building "C:\dev\commandline\src\libcmdline\CommandLine.csproj" (2) on node 1 (default targets). | |
PrepareForBuild: |
This file contains 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
internal class ResourcedOptionAttribute : OptionAttribute | |
{ | |
private string helpTextKey; | |
public ResourcedOptionAttribute(string shortName, string longName) | |
: base(shortName, longName) | |
{ | |
} |
This file contains 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
using System; | |
using CommandLine; | |
using CommandLine.Text; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
private class Options : CommandLineOptionsBase |