~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/VersionControl/GitAddIn/GitAddIn.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
    <ProjectGuid>{83F15BA7-8478-4664-81BB-A82F146D88B3}</ProjectGuid>
 
5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
7
    <OutputType>Library</OutputType>
 
8
    <RootNamespace>ICSharpCode.GitAddIn</RootNamespace>
 
9
    <AssemblyName>GitAddIn</AssemblyName>
 
10
    <OutputPath>..\..\..\..\AddIns\VersionControl\</OutputPath>
 
11
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
 
12
    <NoStdLib>False</NoStdLib>
 
13
    <WarningLevel>4</WarningLevel>
 
14
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
 
15
    <TargetFrameworkVersion Condition=" '$(TargetFrameworkVersion)' == '' ">v4.0</TargetFrameworkVersion>
 
16
    <TargetFrameworkProfile>
 
17
    </TargetFrameworkProfile>
 
18
  </PropertyGroup>
 
19
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
 
20
    <DebugSymbols>true</DebugSymbols>
 
21
    <DebugType>Full</DebugType>
 
22
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
 
23
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
24
    <Optimize>False</Optimize>
 
25
    <StartAction>Program</StartAction>
 
26
    <StartProgram>..\..\..\..\bin\SharpDevelop.exe</StartProgram>
 
27
  </PropertyGroup>
 
28
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
 
29
    <DebugSymbols>False</DebugSymbols>
 
30
    <DebugType>None</DebugType>
 
31
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
 
32
    <DefineConstants>TRACE</DefineConstants>
 
33
  </PropertyGroup>
 
34
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
 
35
    <RegisterForComInterop>False</RegisterForComInterop>
 
36
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
 
37
    <BaseAddress>4194304</BaseAddress>
 
38
    <PlatformTarget>AnyCPU</PlatformTarget>
 
39
    <FileAlignment>4096</FileAlignment>
 
40
  </PropertyGroup>
 
41
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
 
42
  <ItemGroup>
 
43
    <Reference Include="System" />
 
44
    <Reference Include="System.Core">
 
45
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
46
    </Reference>
 
47
    <Reference Include="System.Data" />
 
48
    <Reference Include="System.Data.DataSetExtensions">
 
49
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
50
    </Reference>
 
51
    <Reference Include="System.Drawing" />
 
52
    <Reference Include="System.Windows.Forms" />
 
53
    <Reference Include="System.Xml" />
 
54
    <Reference Include="System.Xml.Linq">
 
55
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
56
    </Reference>
 
57
  </ItemGroup>
 
58
  <ItemGroup>
 
59
    <Compile Include="..\..\..\Main\GlobalAssemblyInfo.cs">
 
60
      <Link>Configuration\GlobalAssemblyInfo.cs</Link>
 
61
    </Compile>
 
62
    <Compile Include="Configuration\AssemblyInfo.cs" />
 
63
    <Compile Include="Src\Commands.cs" />
 
64
    <Compile Include="Src\Git.cs" />
 
65
    <Compile Include="Src\GitGuiWrapper.cs" />
 
66
    <Compile Include="Src\GitMessageView.cs" />
 
67
    <Compile Include="Src\GitStatusCache.cs" />
 
68
    <Compile Include="Src\GitVersionProvider.cs" />
 
69
    <Compile Include="Src\IsUnderGitControlCondition.cs" />
 
70
    <Compile Include="Src\OverlayIconManager.cs" />
 
71
    <Compile Include="Src\RegisterEventsCommand.cs" />
 
72
    <None Include="GitAddIn.addin">
 
73
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 
74
    </None>
 
75
  </ItemGroup>
 
76
  <ItemGroup>
 
77
    <Folder Include="Src" />
 
78
  </ItemGroup>
 
79
  <ItemGroup>
 
80
    <ProjectReference Include="..\..\..\Main\Base\Project\ICSharpCode.SharpDevelop.csproj">
 
81
      <Project>{2748AD25-9C63-4E12-877B-4DCE96FBED54}</Project>
 
82
      <Name>ICSharpCode.SharpDevelop</Name>
 
83
      <Private>False</Private>
 
84
    </ProjectReference>
 
85
    <ProjectReference Include="..\..\..\Main\Core\Project\ICSharpCode.Core.csproj">
 
86
      <Project>{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C}</Project>
 
87
      <Name>ICSharpCode.Core</Name>
 
88
      <Private>False</Private>
 
89
    </ProjectReference>
 
90
    <ProjectReference Include="..\..\..\Main\ICSharpCode.Core.WinForms\ICSharpCode.Core.WinForms.csproj">
 
91
      <Project>{857CA1A3-FC88-4BE0-AB6A-D1EE772AB288}</Project>
 
92
      <Name>ICSharpCode.Core.WinForms</Name>
 
93
      <Private>False</Private>
 
94
    </ProjectReference>
 
95
  </ItemGroup>
 
96
</Project>
 
 
b'\\ No newline at end of file'