mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
8.7 KiB
162 lines
8.7 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build"> |
|
<PropertyGroup> |
|
<ProjectGuid>{984CC812-9470-4A13-AFF9-CC44068D666C}</ProjectGuid> |
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
<OutputType>Library</OutputType> |
|
<RootNamespace>ICSharpCode.Decompiler</RootNamespace> |
|
<AssemblyName>ICSharpCode.Decompiler</AssemblyName> |
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
|
<TargetFrameworkProfile>Client</TargetFrameworkProfile> |
|
<AppDesignerFolder>Properties</AppDesignerFolder> |
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks> |
|
<NoStdLib>False</NoStdLib> |
|
<WarningLevel>4</WarningLevel> |
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
|
<SignAssembly>True</SignAssembly> |
|
<AssemblyOriginatorKeyFile>..\NRefactory\ICSharpCode.NRefactory.snk</AssemblyOriginatorKeyFile> |
|
<DelaySign>False</DelaySign> |
|
<AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' "> |
|
<PlatformTarget>AnyCPU</PlatformTarget> |
|
<RegisterForComInterop>False</RegisterForComInterop> |
|
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> |
|
<BaseAddress>448462848</BaseAddress> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<OutputPath>bin\Debug\</OutputPath> |
|
<DebugSymbols>true</DebugSymbols> |
|
<DebugType>Full</DebugType> |
|
<Optimize>False</Optimize> |
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
|
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<OutputPath>bin\Release\</OutputPath> |
|
<DebugSymbols>true</DebugSymbols> |
|
<DebugType>PdbOnly</DebugType> |
|
<Optimize>True</Optimize> |
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> |
|
<DefineConstants>TRACE</DefineConstants> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(BuildNuGetPackage)' == 'True' "> |
|
<OutputPath>bin\NuGet-$(Configuration)\</OutputPath> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<Reference Include="ICSharpCode.NRefactory" Condition=" '$(BuildNuGetPackage)' == 'True' "> |
|
<HintPath>..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.dll</HintPath> |
|
</Reference> |
|
<Reference Include="ICSharpCode.NRefactory.CSharp" Condition=" '$(BuildNuGetPackage)' == 'True' "> |
|
<HintPath>..\packages\ICSharpCode.NRefactory.5.5.1\lib\Net40\ICSharpCode.NRefactory.CSharp.dll</HintPath> |
|
</Reference> |
|
<Reference Include="Mono.Cecil" Condition=" '$(BuildNuGetPackage)' == 'True' "> |
|
<HintPath>..\packages\Mono.Cecil.0.9.5.4\lib\net40\Mono.Cecil.dll</HintPath> |
|
</Reference> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Core"> |
|
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
</Reference> |
|
<Reference Include="System.Xml" /> |
|
<Reference Include="System.Xml.Linq"> |
|
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
</Reference> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<Compile Include="Ast\Annotations.cs" /> |
|
<Compile Include="Ast\AstBuilder.cs" /> |
|
<Compile Include="Ast\AstMethodBodyBuilder.cs" /> |
|
<Compile Include="Ast\CommentStatement.cs" /> |
|
<Compile Include="Ast\DecompilerContext.cs" /> |
|
<Compile Include="Ast\NameVariables.cs" /> |
|
<Compile Include="Ast\NRefactoryExtensions.cs" /> |
|
<Compile Include="Ast\TextTokenWriter.cs" /> |
|
<Compile Include="Ast\Transforms\AddCheckedBlocks.cs" /> |
|
<Compile Include="Ast\Transforms\CombineQueryExpressions.cs" /> |
|
<Compile Include="Ast\Transforms\ContextTrackingVisitor.cs" /> |
|
<Compile Include="Ast\Transforms\ConvertConstructorCallIntoInitializer.cs" /> |
|
<Compile Include="Ast\Transforms\CustomPatterns.cs" /> |
|
<Compile Include="Ast\Transforms\DecimalConstantTransform.cs" /> |
|
<Compile Include="Ast\Transforms\DeclareVariables.cs" /> |
|
<Compile Include="Ast\Transforms\DelegateConstruction.cs" /> |
|
<Compile Include="Ast\Transforms\ExpressionTreeConverter.cs" /> |
|
<Compile Include="Ast\Transforms\FlattenSwitchBlocks.cs" /> |
|
<Compile Include="Ast\Transforms\IntroduceExtensionMethods.cs" /> |
|
<Compile Include="Ast\Transforms\IntroduceQueryExpressions.cs" /> |
|
<Compile Include="Ast\Transforms\IntroduceUnsafeModifier.cs" /> |
|
<Compile Include="Ast\Transforms\IntroduceUsingDeclarations.cs" /> |
|
<Compile Include="Ast\Transforms\ReplaceMethodCallsWithOperators.cs" /> |
|
<Compile Include="Ast\Transforms\PushNegation.cs" /> |
|
<Compile Include="Ast\Transforms\TransformationPipeline.cs" /> |
|
<Compile Include="Ast\Transforms\PatternStatementTransform.cs" /> |
|
<Compile Include="Ast\TypesHierarchyHelpers.cs" /> |
|
<Compile Include="CecilExtensions.cs" /> |
|
<Compile Include="CodeMappings.cs" /> |
|
<Compile Include="DecompilerException.cs" /> |
|
<Compile Include="DecompilerSettings.cs" /> |
|
<Compile Include="Disassembler\DisassemblerHelpers.cs" /> |
|
<Compile Include="Disassembler\ILStructure.cs" /> |
|
<Compile Include="Disassembler\MethodBodyDisassembler.cs" /> |
|
<Compile Include="Disassembler\ReflectionDisassembler.cs" /> |
|
<Compile Include="FlowAnalysis\ControlFlowEdge.cs" /> |
|
<Compile Include="FlowAnalysis\ControlFlowGraph.cs" /> |
|
<Compile Include="FlowAnalysis\ControlFlowGraphBuilder.cs" /> |
|
<Compile Include="FlowAnalysis\ControlFlowNode.cs" /> |
|
<Compile Include="FlowAnalysis\ControlStructureDetector.cs" /> |
|
<Compile Include="FlowAnalysis\OpCodeInfo.cs" /> |
|
<Compile Include="FlowAnalysis\SimplifyByRefCalls.cs" /> |
|
<Compile Include="FlowAnalysis\SsaBlock.cs" /> |
|
<Compile Include="FlowAnalysis\SsaForm.cs" /> |
|
<Compile Include="FlowAnalysis\SsaFormBuilder.cs" /> |
|
<Compile Include="FlowAnalysis\SsaInstruction.cs" /> |
|
<Compile Include="FlowAnalysis\SsaOptimization.cs" /> |
|
<Compile Include="FlowAnalysis\SsaVariable.cs" /> |
|
<Compile Include="FlowAnalysis\TransformToSsa.cs" /> |
|
<Compile Include="ILAst\AsyncDecompiler.cs" /> |
|
<Compile Include="ILAst\LiftedOperators.cs" /> |
|
<Compile Include="ILAst\InitializerPeepholeTransforms.cs" /> |
|
<Compile Include="ILAst\DefaultDictionary.cs" /> |
|
<Compile Include="ILAst\GotoRemoval.cs" /> |
|
<Compile Include="ILAst\ILAstBuilder.cs" /> |
|
<Compile Include="ILAst\ILAstOptimizer.cs" /> |
|
<Compile Include="ILAst\ILAstTypes.cs" /> |
|
<Compile Include="ILAst\ILCodes.cs" /> |
|
<Compile Include="ILAst\ILInlining.cs" /> |
|
<Compile Include="ILAst\LoopsAndConditions.cs" /> |
|
<Compile Include="ILAst\PatternMatching.cs" /> |
|
<Compile Include="ILAst\PeepholeTransform.cs" /> |
|
<Compile Include="ILAst\SimpleControlFlow.cs" /> |
|
<Compile Include="ILAst\StateRange.cs" /> |
|
<Compile Include="ILAst\SymbolicExecution.cs" /> |
|
<Compile Include="ILAst\TypeAnalysis.cs" /> |
|
<Compile Include="ILAst\YieldReturnDecompiler.cs" /> |
|
<Compile Include="ITextOutput.cs" /> |
|
<Compile Include="PlainTextOutput.cs" /> |
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
<Compile Include="ReferenceResolvingException.cs" /> |
|
<Compile Include="TextOutputWriter.cs" /> |
|
<None Include="Properties\AssemblyInfo.template.cs" /> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<ProjectReference Include="..\cecil\Mono.Cecil.csproj" Condition=" '$(BuildNuGetPackage)' != 'True' "> |
|
<Project>{d68133bd-1e63-496e-9ede-4fbdbf77b486}</Project> |
|
<Name>Mono.Cecil</Name> |
|
</ProjectReference> |
|
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj" Condition=" '$(BuildNuGetPackage)' != 'True' "> |
|
<Project>{53dca265-3c3c-42f9-b647-f72ba678122b}</Project> |
|
<Name>ICSharpCode.NRefactory.CSharp</Name> |
|
</ProjectReference> |
|
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj" Condition=" '$(BuildNuGetPackage)' != 'True' "> |
|
<Project>{3b2a5653-ec97-4001-bb9b-d90f1af2c371}</Project> |
|
<Name>ICSharpCode.NRefactory</Name> |
|
</ProjectReference> |
|
</ItemGroup> |
|
<ItemGroup /> |
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> |
|
<Target Name="BeforeBuild"> |
|
<MSBuild Projects="$(MSBuildProjectDirectory)\..\BuildTools\UpdateAssemblyInfo\UpdateAssemblyInfo.csproj" Targets="Build" Properties="Configuration=Debug; Platform=AnyCPU" /> |
|
<Exec WorkingDirectory="$(MSBuildProjectDirectory)\..\BuildTools\UpdateAssemblyInfo\bin\Debug" Command="UpdateAssemblyInfo.exe --branchname $(BranchName)" Timeout="60000" Condition=" '$(BranchName)' != '' " /> |
|
<Exec WorkingDirectory="$(MSBuildProjectDirectory)\..\BuildTools\UpdateAssemblyInfo\bin\Debug" Command="UpdateAssemblyInfo.exe" Timeout="60000" Condition=" '$(BranchName)' == '' " /> |
|
</Target> |
|
</Project> |