-
Notifications
You must be signed in to change notification settings - Fork 1
/
ILSpyMono.csproj
112 lines (112 loc) · 4.69 KB
/
ILSpyMono.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{BD8FA26A-CDB8-4FB4-8551-4AE2E46C47C2}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ILSpyMono</RootNamespace>
<AssemblyName>ILSpyMono</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="WindowsBase" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Mock.cs" />
<Compile Include="..\ILSpy\AssemblyList.cs">
<Link>ILSpy\AssemblyList.cs</Link>
</Compile>
<Compile Include="..\ILSpy\DecompilationOptions.cs">
<Link>ILSpy\DecompilationOptions.cs</Link>
</Compile>
<Compile Include="..\ILSpy\ExtensionMethods.cs">
<Link>ILSpy\ExtensionMethods.cs</Link>
</Compile>
<Compile Include="..\ILSpy\LoadedAssembly.cs">
<Link>ILSpy\LoadedAssembly.cs</Link>
</Compile>
<Compile Include="..\ILSpy\Languages\CSharpLanguage.cs">
<Link>ILSpy\Languages\CSharpLanguage.cs</Link>
</Compile>
<Compile Include="..\ILSpy\Languages\Language.cs">
<Link>ILSpy\Languages\Language.cs</Link>
</Compile>
<Compile Include="..\ILSpy\Options\DecompilerSettingsPanel.xaml.cs">
<Link>ILSpy\Options\DecompilerSettingsPanel.xaml.cs</Link>
</Compile>
<Compile Include="..\ILSpy\Options\DisplaySettings.cs">
<Link>ILSpy\Options\DisplaySettings.cs</Link>
</Compile>
<Compile Include="..\ILSpy\XmlDoc\AddXmlDocTransform.cs">
<Link>ILSpy\XmlDoc\AddXmlDocTransform.cs</Link>
</Compile>
<Compile Include="..\ILSpy\XmlDoc\XmlDocKeyProvider.cs">
<Link>ILSpy\XmlDoc\XmlDocKeyProvider.cs</Link>
</Compile>
<Compile Include="..\ILSpy\XmlDoc\XmlDocLoader.cs">
<Link>ILSpy\XmlDoc\XmlDocLoader.cs</Link>
</Compile>
<Compile Include="..\ILSpy\XmlDoc\XmlDocRenderer.cs">
<Link>ILSpy\XmlDoc\XmlDocRenderer.cs</Link>
</Compile>
<Compile Include="..\ILSpy\Options\OptionsDialog.xaml.cs">
<Link>ILSpy\Options\OptionsDialog.xaml.cs</Link>
</Compile>
<Compile Include="..\ILSpy\CommandLineArguments.cs">
<Link>ILSpy\CommandLineArguments.cs</Link>
</Compile>
<Compile Include="..\ILSpy\ILSpySettings.cs">
<Link>ILSpy\ILSpySettings.cs</Link>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj">
<Project>{984CC812-9470-4A13-AFF9-CC44068D666C}</Project>
<Name>ICSharpCode.Decompiler</Name>
</ProjectReference>
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj">
<Project>{3B2A5653-EC97-4001-BB9B-D90F1AF2C371}</Project>
<Name>ICSharpCode.NRefactory</Name>
</ProjectReference>
<ProjectReference Include="..\cecil\Mono.Cecil.csproj">
<Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
<Name>Mono.Cecil</Name>
</ProjectReference>
<ProjectReference Include="..\cecil\symbols\pdb\Mono.Cecil.Pdb.csproj">
<Project>{63E6915C-7EA4-4D76-AB28-0D7191EEA626}</Project>
<Name>Mono.Cecil.Pdb</Name>
</ProjectReference>
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj">
<Project>{53DCA265-3C3C-42F9-B647-F72BA678122B}</Project>
<Name>ICSharpCode.NRefactory.CSharp</Name>
</ProjectReference>
</ItemGroup>
</Project>