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.
67 lines
2.7 KiB
67 lines
2.7 KiB
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
<PropertyGroup> |
|
<OutputType>WinExe</OutputType> |
|
<RootNamespace>CSharpEditor</RootNamespace> |
|
<AssemblyName>CSharpCodeCompletion</AssemblyName> |
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
<ProjectGuid>{489CFE09-FDF7-4C89-BAB5-BD09CADD61AD}</ProjectGuid> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<OutputPath>bin\Debug\</OutputPath> |
|
<Optimize>False</Optimize> |
|
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
<DebugSymbols>True</DebugSymbols> |
|
<DebugType>Full</DebugType> |
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
|
</PropertyGroup> |
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<OutputPath>bin\Release\</OutputPath> |
|
<Optimize>True</Optimize> |
|
<DefineConstants>TRACE</DefineConstants> |
|
<DebugSymbols>False</DebugSymbols> |
|
<DebugType>None</DebugType> |
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<Reference Include="System" /> |
|
<Reference Include="System.Data" /> |
|
<Reference Include="System.Drawing" /> |
|
<Reference Include="System.Windows.Forms" /> |
|
<Reference Include="System.Xml" /> |
|
<Reference Include="ICSharpCode.NRefactory"> |
|
<HintPath>..\..\bin\ICSharpCode.NRefactory.dll</HintPath> |
|
<SpecificVersion>False</SpecificVersion> |
|
</Reference> |
|
<Reference Include="ICSharpCode.SharpDevelop.Dom"> |
|
<HintPath>..\..\bin\ICSharpCode.SharpDevelop.Dom.dll</HintPath> |
|
<SpecificVersion>False</SpecificVersion> |
|
</Reference> |
|
<Reference Include="ICSharpCode.TextEditor"> |
|
<HintPath>..\..\bin\ICSharpCode.TextEditor.dll</HintPath> |
|
<SpecificVersion>False</SpecificVersion> |
|
</Reference> |
|
<Reference Include="log4net"> |
|
<HintPath>..\..\bin\log4net.dll</HintPath> |
|
<SpecificVersion>False</SpecificVersion> |
|
</Reference> |
|
<Reference Include="Mono.Cecil"> |
|
<HintPath>..\..\bin\Mono.Cecil.dll</HintPath> |
|
<SpecificVersion>False</SpecificVersion> |
|
</Reference> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<Compile Include="MainForm.cs" /> |
|
<Compile Include="MainForm.Designer.cs"> |
|
<DependentUpon>MainForm.cs</DependentUpon> |
|
</Compile> |
|
<Compile Include="AssemblyInfo.cs" /> |
|
<EmbeddedResource Include="MainForm.resx"> |
|
<DependentUpon>MainForm.cs</DependentUpon> |
|
</EmbeddedResource> |
|
<Compile Include="CodeCompletionProvider.cs" /> |
|
<Compile Include="CodeCompletionKeyHandler.cs" /> |
|
<Compile Include="HostCallbackImplementation.cs" /> |
|
</ItemGroup> |
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> |
|
</Project> |