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.
69 lines
3.1 KiB
69 lines
3.1 KiB
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
<PropertyGroup> |
|
<ProjectGuid>{EE3A3C1A-F9C3-4C75-853D-A9476E518C3A}</ProjectGuid> |
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
<OutputType>WinExe</OutputType> |
|
<RootNamespace>Decompiler</RootNamespace> |
|
<AssemblyName>Decompiler</AssemblyName> |
|
</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>False</DebugSymbols> |
|
<DebugType>None</DebugType> |
|
<Optimize>True</Optimize> |
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> |
|
<DefineConstants>TRACE</DefineConstants> |
|
</PropertyGroup> |
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> |
|
<ItemGroup> |
|
<Reference Include="ICSharpCode.NRefactory"> |
|
<HintPath>lib\NRefactory\ICSharpCode.NRefactory.dll</HintPath> |
|
</Reference> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Data" /> |
|
<Reference Include="System.Drawing" /> |
|
<Reference Include="System.Windows.Forms" /> |
|
<Reference Include="System.Xml" /> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<Folder Include="src" /> |
|
<Folder Include="src\ControlFlow" /> |
|
<Compile Include="src\AssemblyInfo.cs" /> |
|
<Compile Include="src\AstBuilder.cs" /> |
|
<Compile Include="src\AstMetodBodyBuilder.cs" /> |
|
<Compile Include="src\ByteCode.cs" /> |
|
<Compile Include="src\ByteCode.StackBehaviour.cs" /> |
|
<Compile Include="src\ByteCode.Type.cs" /> |
|
<Compile Include="src\ByteCodeCollection.cs" /> |
|
<Compile Include="src\CilStack.cs" /> |
|
<Compile Include="src\ControlFlow\Node-Optimize.cs" /> |
|
<Compile Include="src\ControlFlow\Node-Transforms.cs" /> |
|
<Compile Include="src\ControlFlow\NodeCollection.cs" /> |
|
<Compile Include="src\ControlFlow\Nodes.cs" /> |
|
<Compile Include="src\ControlFlow\Node-Structure.cs" /> |
|
<Compile Include="src\MainForm.cs" /> |
|
<Compile Include="src\MainForm.Designer.cs" /> |
|
<Compile Include="src\Options.cs" /> |
|
<Compile Include="src\Program.cs" /> |
|
<Compile Include="src\ByteCode.StackAnalysis.cs" /> |
|
<Compile Include="src\StackExpression.cs" /> |
|
<Compile Include="src\StackExpressionCollection.cs" /> |
|
<Compile Include="src\Util.cs" /> |
|
<EmbeddedResource Include="src\MainForm.resx"> |
|
<DependentUpon>MainForm.cs</DependentUpon> |
|
</EmbeddedResource> |
|
<ProjectReference Include="lib\cecil-0.6\src\Mono.Cecil\Mono.Cecil.csproj"> |
|
<Project>{D8F63DFF-5230-43E4-9AB2-DA6E721A1FAE}</Project> |
|
<Name>Mono.Cecil</Name> |
|
</ProjectReference> |
|
</ItemGroup> |
|
</Project> |