[XamlC] drop ICSharpCode.Decompiler (#586)
authorStephane Delcroix <stephane@delcroix.org>
Mon, 5 Dec 2016 12:31:31 +0000 (13:31 +0100)
committerGitHub <noreply@github.com>
Mon, 5 Dec 2016 12:31:31 +0000 (13:31 +0100)
commit1a5bead2f2e24cc16da23753eaf0882d38d54ea1
tree2fb4bf607ca11d9ed5163ed329796ca651054a6a
parent3692786c3a0f9ba01ffe9516caa624a018ac885a
[XamlC] drop ICSharpCode.Decompiler (#586)

* [XamlC] drop ICSharpCode.Decompiler

* update nuspec

* fix typo
127 files changed:
.nuspec/Xamarin.Forms.nuspec
ICSharpCode.Decompiler/Ast/Annotations.cs [deleted file]
ICSharpCode.Decompiler/Ast/AstBuilder.cs [deleted file]
ICSharpCode.Decompiler/Ast/AstMethodBodyBuilder.cs [deleted file]
ICSharpCode.Decompiler/Ast/CommentStatement.cs [deleted file]
ICSharpCode.Decompiler/Ast/DecompilerContext.cs [deleted file]
ICSharpCode.Decompiler/Ast/NRefactoryExtensions.cs [deleted file]
ICSharpCode.Decompiler/Ast/NameVariables.cs [deleted file]
ICSharpCode.Decompiler/Ast/TextTokenWriter.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/AddCheckedBlocks.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/CombineQueryExpressions.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/ContextTrackingVisitor.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/ConvertConstructorCallIntoInitializer.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/CustomPatterns.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/DecimalConstantTransform.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/DeclareVariables.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/DelegateConstruction.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/ExpressionTreeConverter.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/FlattenSwitchBlocks.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/IntroduceExtensionMethods.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/IntroduceQueryExpressions.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/IntroduceUnsafeModifier.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/IntroduceUsingDeclarations.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/PatternStatementTransform.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/PushNegation.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/ReplaceMethodCallsWithOperators.cs [deleted file]
ICSharpCode.Decompiler/Ast/Transforms/TransformationPipeline.cs [deleted file]
ICSharpCode.Decompiler/Ast/TypesHierarchyHelpers.cs [deleted file]
ICSharpCode.Decompiler/CecilExtensions.cs [deleted file]
ICSharpCode.Decompiler/CodeMappings.cs [deleted file]
ICSharpCode.Decompiler/DecompilerException.cs [deleted file]
ICSharpCode.Decompiler/DecompilerSettings.cs [deleted file]
ICSharpCode.Decompiler/Disassembler/DisassemblerHelpers.cs [deleted file]
ICSharpCode.Decompiler/Disassembler/ILStructure.cs [deleted file]
ICSharpCode.Decompiler/Disassembler/MethodBodyDisassembler.cs [deleted file]
ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/ControlFlowEdge.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/ControlFlowGraph.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/ControlFlowGraphBuilder.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/ControlFlowNode.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/ControlStructureDetector.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/OpCodeInfo.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SimplifyByRefCalls.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaBlock.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaForm.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaFormBuilder.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaInstruction.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaOptimization.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/SsaVariable.cs [deleted file]
ICSharpCode.Decompiler/FlowAnalysis/TransformToSsa.cs [deleted file]
ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj [deleted file]
ICSharpCode.Decompiler/ICSharpCode.Decompiler.sln [deleted file]
ICSharpCode.Decompiler/ILAst/AsyncDecompiler.cs [deleted file]
ICSharpCode.Decompiler/ILAst/DefaultDictionary.cs [deleted file]
ICSharpCode.Decompiler/ILAst/GotoRemoval.cs [deleted file]
ICSharpCode.Decompiler/ILAst/ILAstBuilder.cs [deleted file]
ICSharpCode.Decompiler/ILAst/ILAstOptimizer.cs [deleted file]
ICSharpCode.Decompiler/ILAst/ILAstTypes.cs [deleted file]
ICSharpCode.Decompiler/ILAst/ILCodes.cs [deleted file]
ICSharpCode.Decompiler/ILAst/ILInlining.cs [deleted file]
ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs [deleted file]
ICSharpCode.Decompiler/ILAst/LiftedOperators.cs [deleted file]
ICSharpCode.Decompiler/ILAst/LoopsAndConditions.cs [deleted file]
ICSharpCode.Decompiler/ILAst/PatternMatching.cs [deleted file]
ICSharpCode.Decompiler/ILAst/PeepholeTransform.cs [deleted file]
ICSharpCode.Decompiler/ILAst/SimpleControlFlow.cs [deleted file]
ICSharpCode.Decompiler/ILAst/StateRange.cs [deleted file]
ICSharpCode.Decompiler/ILAst/SymbolicExecution.cs [deleted file]
ICSharpCode.Decompiler/ILAst/TypeAnalysis.cs [deleted file]
ICSharpCode.Decompiler/ILAst/YieldReturnDecompiler.cs [deleted file]
ICSharpCode.Decompiler/ITextOutput.cs [deleted file]
ICSharpCode.Decompiler/PlainTextOutput.cs [deleted file]
ICSharpCode.Decompiler/Properties/AssemblyInfo.template.cs [deleted file]
ICSharpCode.Decompiler/ReferenceResolvingException.cs [deleted file]
ICSharpCode.Decompiler/Tests/Async.cs [deleted file]
ICSharpCode.Decompiler/Tests/BooleanConsumedAsInteger.il [deleted file]
ICSharpCode.Decompiler/Tests/CallOverloadedMethod.cs [deleted file]
ICSharpCode.Decompiler/Tests/CheckedUnchecked.cs [deleted file]
ICSharpCode.Decompiler/Tests/CodeSampleFileParser.cs [deleted file]
ICSharpCode.Decompiler/Tests/ControlFlow.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomAttributes.code.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributeTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomAttributes/S_AssemblyCustomAttribute.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributeSamples.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomAttributes/S_CustomAttributes.cs [deleted file]
ICSharpCode.Decompiler/Tests/CustomShortCircuitOperators.cs [deleted file]
ICSharpCode.Decompiler/Tests/DecompilerTestBase.cs [deleted file]
ICSharpCode.Decompiler/Tests/DelegateConstruction.cs [deleted file]
ICSharpCode.Decompiler/Tests/DoubleConstants.cs [deleted file]
ICSharpCode.Decompiler/Tests/ExceptionHandling.cs [deleted file]
ICSharpCode.Decompiler/Tests/ExpressionTrees.cs [deleted file]
ICSharpCode.Decompiler/Tests/Generics.cs [deleted file]
ICSharpCode.Decompiler/Tests/Helpers/CodeAssert.cs [deleted file]
ICSharpCode.Decompiler/Tests/Helpers/RemoveCompilerAttribute.cs [deleted file]
ICSharpCode.Decompiler/Tests/ICSharpCode.Decompiler.Tests.csproj [deleted file]
ICSharpCode.Decompiler/Tests/IL/ILTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/IL/SequenceOfNestedIfs.Output.cs [deleted file]
ICSharpCode.Decompiler/Tests/IL/SequenceOfNestedIfs.il [deleted file]
ICSharpCode.Decompiler/Tests/IL/StackTests.il [deleted file]
ICSharpCode.Decompiler/Tests/IncrementDecrement.cs [deleted file]
ICSharpCode.Decompiler/Tests/InitializerTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/LiftedOperators.cs [deleted file]
ICSharpCode.Decompiler/Tests/Lock.cs [deleted file]
ICSharpCode.Decompiler/Tests/Loops.cs [deleted file]
ICSharpCode.Decompiler/Tests/MultidimensionalArray.cs [deleted file]
ICSharpCode.Decompiler/Tests/PInvoke.cs [deleted file]
ICSharpCode.Decompiler/Tests/PropertiesAndEvents.cs [deleted file]
ICSharpCode.Decompiler/Tests/QueryExpressions.cs [deleted file]
ICSharpCode.Decompiler/Tests/Switch.cs [deleted file]
ICSharpCode.Decompiler/Tests/TestRunner.cs [deleted file]
ICSharpCode.Decompiler/Tests/TypeAnalysisTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/Types/EnumTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/Types/S_EnumSamples.cs [deleted file]
ICSharpCode.Decompiler/Tests/Types/S_TypeDeclarations.cs [deleted file]
ICSharpCode.Decompiler/Tests/Types/S_TypeMemberDeclarations.cs [deleted file]
ICSharpCode.Decompiler/Tests/Types/TypeTests.cs [deleted file]
ICSharpCode.Decompiler/Tests/UndocumentedExpressions.cs [deleted file]
ICSharpCode.Decompiler/Tests/UnsafeCode.cs [deleted file]
ICSharpCode.Decompiler/Tests/ValueTypes.cs [deleted file]
ICSharpCode.Decompiler/Tests/YieldReturn.cs [deleted file]
ICSharpCode.Decompiler/Tests/packages.config [deleted file]
ICSharpCode.Decompiler/TextOutputWriter.cs [deleted file]
ICSharpCode.Decompiler/packages.config [deleted file]
Xamarin.Forms.Build.Tasks/Xamarin.Forms.Build.Tasks.csproj
Xamarin.Forms.Build.Tasks/XamlCTask.cs
Xamarin.Forms.Xaml.Xamlc/Xamlc.cs
Xamarin.Forms.sln