-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRemoveUnusedRef.csproj
More file actions
109 lines (109 loc) · 5.13 KB
/
RemoveUnusedRef.csproj
File metadata and controls
109 lines (109 loc) · 5.13 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{0C235DB5-FA7B-4E33-ABB7-EB2A8FFFC75D}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<RootNamespace>RemoveUnusedRef</RootNamespace>
<AssemblyName>RemoveUnusedRef</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<SignAssembly>False</SignAssembly>
<DelaySign>False</DelaySign>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<OutputPath>bin</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<StartAction>Program</StartAction>
<StartProgram>..\..\..\..\..\SharpDevelop\SharpDevelop_4.1.0.8000_Source\bin\SharpDevelop.exe</StartProgram>
</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>
<ItemGroup>
<Reference Include="ICSharpCode.Core">
<HintPath>Lib\ICSharpCode.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.SharpDevelop">
<HintPath>Lib\ICSharpCode.SharpDevelop.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.SharpDevelop.Dom">
<HintPath>Lib\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>RequiredLibraries\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<None Include="RemoveUnusedRef.addin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration\AssemblyInfo.cs" />
<Compile Include="Src\AddInEngine.cs" />
<Compile Include="Src\Commands\RemoveUnusedReferences.cs" />
<Compile Include="Src\Extensions\CecilTypesExtension.cs" />
<Compile Include="Src\Gui\SelectUnusedrefDialog.cs" />
<Compile Include="Src\Helper.cs" />
<Compile Include="Src\IUsedReferencesAuditEntry.cs" />
<Compile Include="Src\IShellProxy.cs" />
<Compile Include="Src\ProjectAssemblyResolver.cs" />
<Compile Include="Src\ProjectInfo.cs" />
<Compile Include="Src\ProjectMetadata.cs" />
<Compile Include="Src\ProjectReference.cs" />
<Compile Include="Src\ProjectsUnusedReferencesAudit\CppCliProjectAudit.cs" />
<Compile Include="Src\ProjectsUnusedReferencesAudit\CSharpProjectAudit.cs" />
<Compile Include="Src\ProjectsUnusedReferencesAudit\VBasicProjectAudit.cs" />
<Compile Include="Src\ShellProxy.cs" />
<Compile Include="Src\UnusedReferencesAudit.cs" />
<Compile Include="Src\UnusedReferencesAuditFactory.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\AssemblyManifestEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\ClassesBaseTypesEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\DependentAssembliesEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\ImportedTypesEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\InterfacesTypesEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\TypesAttributesEntry.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\Workers\ClassTypeHierarchyWorker.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\Workers\ImportedTypeWorker.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\Workers\InterfacesTypeWorker.cs" />
<Compile Include="Src\UsedReferencesAuditEntries\Workers\MemberReferencesWorker.cs" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<EmbeddedResource Include="Resources\StringResources.resources">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
</Project>