~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to samples/LineCounter/LineCounter.csproj

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
 
3
  <PropertyGroup>
 
4
    <OutputType>Library</OutputType>
 
5
    <RootNamespace>LineCounterAddin</RootNamespace>
 
6
    <AssemblyName>LineCounter</AssemblyName>
 
7
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
8
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
9
    <ProjectGuid>{880A7EAF-D0B4-46AC-A9B6-B6156512037A}</ProjectGuid>
 
10
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
 
11
    <OutputPath>..\..\AddIns\Samples\LineCounter</OutputPath>
 
12
    <NoStdLib>False</NoStdLib>
 
13
    <RegisterForComInterop>False</RegisterForComInterop>
 
14
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
 
15
    <BaseAddress>4194304</BaseAddress>
 
16
    <PlatformTarget>AnyCPU</PlatformTarget>
 
17
    <FileAlignment>4096</FileAlignment>
 
18
    <WarningLevel>4</WarningLevel>
 
19
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
 
20
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
 
21
  </PropertyGroup>
 
22
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
 
23
    <IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
 
24
    <Optimize>False</Optimize>
 
25
    <DefineConstants>DEBUG,TRACE,IMPR1,IMPR2,IMPR3</DefineConstants>
 
26
    <DebugSymbols>true</DebugSymbols>
 
27
    <DebugType>Full</DebugType>
 
28
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
 
29
  </PropertyGroup>
 
30
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
 
31
    <IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
 
32
    <Optimize>True</Optimize>
 
33
    <DefineConstants>TRACE,IMPR1,IMPR2,IMPR3</DefineConstants>
 
34
    <DebugSymbols>false</DebugSymbols>
 
35
    <DebugType>None</DebugType>
 
36
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
 
37
  </PropertyGroup>
 
38
  <ItemGroup>
 
39
    <Reference Include="System" />
 
40
    <Reference Include="System.Core">
 
41
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
42
    </Reference>
 
43
    <Reference Include="System.Data" />
 
44
    <Reference Include="System.Data.DataSetExtensions">
 
45
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
46
    </Reference>
 
47
    <Reference Include="System.Drawing" />
 
48
    <Reference Include="System.Windows.Forms" />
 
49
    <Reference Include="System.Xml" />
 
50
    <Reference Include="ICSharpCode.SharpDevelop">
 
51
      <HintPath>..\..\bin\ICSharpCode.SharpDevelop.dll</HintPath>
 
52
      <SpecificVersion>False</SpecificVersion>
 
53
      <Private>False</Private>
 
54
    </Reference>
 
55
    <Reference Include="ICSharpCode.Core">
 
56
      <HintPath>..\..\bin\ICSharpCode.Core.dll</HintPath>
 
57
      <SpecificVersion>False</SpecificVersion>
 
58
      <Private>False</Private>
 
59
    </Reference>
 
60
    <Reference Include="ICSharpCode.SharpDevelop.Dom">
 
61
      <HintPath>..\..\bin\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
 
62
      <SpecificVersion>False</SpecificVersion>
 
63
      <Private>False</Private>
 
64
    </Reference>
 
65
    <Reference Include="System.Xml.Linq">
 
66
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
67
    </Reference>
 
68
  </ItemGroup>
 
69
  <ItemGroup>
 
70
    <None Include="LineCounter.addin">
 
71
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 
72
    </None>
 
73
    <Compile Include="Src\Command.cs" />
 
74
    <Compile Include="Configuration\AssemblyInfo.cs" />
 
75
    <Compile Include="Src\LineCounterViewContent.cs" />
 
76
    <Compile Include="Src\LineCounterBrowser.cs" />
 
77
    <Compile Include="Src\LineCounterBrowser.Designer.cs">
 
78
      <DependentUpon>LineCounterBrowser.cs</DependentUpon>
 
79
    </Compile>
 
80
    <EmbeddedResource Include="Src\LineCounterBrowser.resx">
 
81
      <DependentUpon>LineCounterBrowser.cs</DependentUpon>
 
82
    </EmbeddedResource>
 
83
    <Compile Include="Src\ImageListHelper.cs" />
 
84
    <Compile Include="Src\Extensibility.cs" />
 
85
  </ItemGroup>
 
86
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
 
87
</Project>
 
 
b'\\ No newline at end of file'