Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextEditorLib.csproj « TextEditorLib « TextEditor « Samples - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 477bbb5c3719b0eab37509a1b81db304f5ab601e (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <ProjectGuid>{ED5EC705-1905-4FB6-821B-9464D60727EF}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AssemblyName>TextEditorLib</AssemblyName>
    <SchemaVersion>2.0</SchemaVersion>
    <RootNamespace>TextEditorLib</RootNamespace>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>True</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>True</Optimize>
    <OutputPath>..\bin</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
    <ConsolePause>False</ConsolePause>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>none</DebugType>
    <Optimize>True</Optimize>
    <OutputPath>..\bin</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
    <ConsolePause>False</ConsolePause>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
      <SpecificVersion>False</SpecificVersion>
    </Reference>
    <Reference Include="atk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
      <SpecificVersion>False</SpecificVersion>
    </Reference>
    <Reference Include="gdk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
      <SpecificVersion>False</SpecificVersion>
    </Reference>
    <Reference Include="gtk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
      <SpecificVersion>False</SpecificVersion>
    </Reference>
    <Reference Include="System" />
    <Reference Include="Mono.Posix" />
    <Reference Include="Mono.Addins">
      <HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
    </Reference>
    <Reference Include="Mono.Addins.Gui">
      <HintPath>..\..\..\bin\Mono.Addins.Gui.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="AssemblyInfo.cs" />
    <Compile Include="ICommand.cs" />
    <Compile Include="gtk-gui\generated.cs" />
    <Compile Include="MainWindow.cs" />
    <Compile Include="gtk-gui\MainWindow.cs" />
    <Compile Include="TextEditorApp.cs" />
    <Compile Include="Commands\CopyCommand.cs" />
    <Compile Include="Commands\CutCommand.cs" />
    <Compile Include="Commands\NewCommand.cs" />
    <Compile Include="Commands\OpenCommand.cs" />
    <Compile Include="Commands\PasteCommand.cs" />
    <Compile Include="Commands\SaveCommand.cs" />
    <Compile Include="ExtensionNodes\MenuItemNode.cs" />
    <Compile Include="ExtensionNodes\MenuSeparatorNode.cs" />
    <Compile Include="ExtensionNodes\SubmenuNode.cs" />
    <Compile Include="ExtensionNodes\ToolButtonNode.cs" />
    <Compile Include="ExtensionNodes\ToolSeparatorNode.cs" />
    <Compile Include="ExtensionNodes\MenuNode.cs" />
    <Compile Include="ExtensionNodes\ToolbarNode.cs" />
    <Compile Include="Commands\ExitCommand.cs" />
    <Compile Include="OpenFileCondition.cs" />
    <Compile Include="ExtensionNodes\TemplateCategoryNode.cs" />
    <Compile Include="ExtensionNodes\FileTemplateNode.cs" />
    <Compile Include="Commands\SetupCommand.cs" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="gtk-gui\gui.stetic">
      <LogicalName>gui.stetic</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Templates\ChangeLogTemplate.txt">
      <LogicalName>ChangeLogTemplate.txt</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Templates\DotConfigTemplate.txt">
      <LogicalName>DotConfigTemplate.txt</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Templates\TextEditor.addin.xml">
      <LogicalName>TextEditor.addin.xml</LogicalName>
    </EmbeddedResource>
    <EmbeddedResource Include="Templates\WorkReport.txt">
      <LogicalName>WorkReport.txt</LogicalName>
    </EmbeddedResource>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>