~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to samples/SharpSnippetCompiler/SharpSnippetCompiler/SharpSnippetCompiler.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>{A63633B4-2C31-4CFF-B2A3-92EAB1AB448E}</ProjectGuid>
 
5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
7
    <OutputType>Exe</OutputType>
 
8
    <RootNamespace>ICSharpCode.SharpSnippetCompiler</RootNamespace>
 
9
    <AssemblyName>SharpSnippetCompiler</AssemblyName>
 
10
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
 
11
    <NoStdLib>False</NoStdLib>
 
12
    <WarningLevel>4</WarningLevel>
 
13
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
 
14
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
 
15
  </PropertyGroup>
 
16
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
 
17
    <OutputPath>bin\</OutputPath>
 
18
    <DebugSymbols>true</DebugSymbols>
 
19
    <DebugType>Full</DebugType>
 
20
    <Optimize>False</Optimize>
 
21
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
 
22
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
23
  </PropertyGroup>
 
24
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
 
25
    <OutputPath>bin\</OutputPath>
 
26
    <DebugSymbols>false</DebugSymbols>
 
27
    <DebugType>None</DebugType>
 
28
    <Optimize>True</Optimize>
 
29
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
 
30
    <DefineConstants>TRACE</DefineConstants>
 
31
  </PropertyGroup>
 
32
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
 
33
    <RegisterForComInterop>False</RegisterForComInterop>
 
34
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
 
35
    <BaseAddress>4194304</BaseAddress>
 
36
    <PlatformTarget>AnyCPU</PlatformTarget>
 
37
    <FileAlignment>4096</FileAlignment>
 
38
  </PropertyGroup>
 
39
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
 
40
  <Import Project="PreBuildEvent.proj" />
 
41
  <ItemGroup>
 
42
    <Reference Include="ICSharpCode.Core">
 
43
      <HintPath>..\..\..\bin\ICSharpCode.Core.dll</HintPath>
 
44
    </Reference>
 
45
    <Reference Include="ICSharpCode.SharpDevelop">
 
46
      <HintPath>..\..\..\bin\ICSharpCode.SharpDevelop.dll</HintPath>
 
47
    </Reference>
 
48
    <Reference Include="ICSharpCode.TextEditor">
 
49
      <HintPath>..\..\..\bin\ICSharpCode.TextEditor.dll</HintPath>
 
50
    </Reference>
 
51
    <Reference Include="System" />
 
52
    <Reference Include="System.Core">
 
53
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
54
    </Reference>
 
55
    <Reference Include="System.Data" />
 
56
    <Reference Include="System.Drawing" />
 
57
    <Reference Include="System.Windows.Forms" />
 
58
    <Reference Include="System.Xml" />
 
59
  </ItemGroup>
 
60
  <ItemGroup>
 
61
    <Compile Include="AssemblyInfo.cs" />
 
62
    <Compile Include="MainForm.cs" />
 
63
    <Compile Include="MainForm.Designer.cs">
 
64
      <DependentUpon>MainForm.cs</DependentUpon>
 
65
    </Compile>
 
66
    <Compile Include="NewFileDialog.cs" />
 
67
    <Compile Include="NewFileDialog.Designer.cs">
 
68
      <DependentUpon>NewFileDialog.cs</DependentUpon>
 
69
    </Compile>
 
70
    <Compile Include="Program.cs" />
 
71
    <Compile Include="SnippetTabPage.cs" />
 
72
    <Compile Include="TextEditorDisplayBinding.cs" />
 
73
    <Compile Include="WorkbenchLayout.cs" />
 
74
    <Compile Include="WorkbenchWindow.cs" />
 
75
    <EmbeddedResource Include="MainForm.resx">
 
76
      <DependentUpon>MainForm.cs</DependentUpon>
 
77
    </EmbeddedResource>
 
78
    <EmbeddedResource Include="NewFileDialog.resx">
 
79
      <DependentUpon>NewFileDialog.cs</DependentUpon>
 
80
    </EmbeddedResource>
 
81
    <None Include="app.config" />
 
82
    <None Include="bin\AddIns\SharpSnippetCompiler.addin">
 
83
      <Link>SharpSnippetCompiler.addin</Link>
 
84
    </None>
 
85
  </ItemGroup>
 
86
  <ItemGroup>
 
87
    <ProjectReference Include="..\SharpSnippetCompiler.Core\SharpSnippetCompiler.Core.csproj">
 
88
      <Project>{5A2EC8F7-2274-4EA3-AC7A-6D1C8598F938}</Project>
 
89
      <Name>SharpSnippetCompiler.Core</Name>
 
90
    </ProjectReference>
 
91
  </ItemGroup>
 
92
</Project>
 
 
b'\\ No newline at end of file'