root/lang/csharp/soyText/soyText/soyText.csproj @ 31588

Revision 31588, 4.5 kB (checked in by hoge1e3, 4 years ago)

ref #131 タイトルを抽出する部分だけ

Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{3C1CF7A5-F019-466F-BA92-B808ECAC45EC}</ProjectGuid>
9    <OutputType>WinExe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>SoyText</RootNamespace>
12    <AssemblyName>soyText</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core">
36      <RequiredTargetFramework>3.5</RequiredTargetFramework>
37    </Reference>
38    <Reference Include="System.Xml.Linq">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Data.DataSetExtensions">
42      <RequiredTargetFramework>3.5</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Data" />
45    <Reference Include="System.Deployment" />
46    <Reference Include="System.Drawing" />
47    <Reference Include="System.Windows.Forms" />
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="Document.cs" />
52    <Compile Include="DocumentSet.cs" />
53    <Compile Include="FileReader.cs" />
54    <Compile Include="Form1.cs">
55      <SubType>Form</SubType>
56    </Compile>
57    <Compile Include="Form1.Designer.cs">
58      <DependentUpon>Form1.cs</DependentUpon>
59    </Compile>
60    <Compile Include="Indexer.cs" />
61    <Compile Include="Mkdir.cs" />
62    <Compile Include="ParsedDocument.cs" />
63    <Compile Include="Program.cs" />
64    <Compile Include="Properties\AssemblyInfo.cs" />
65    <EmbeddedResource Include="Form1.resx">
66      <DependentUpon>Form1.cs</DependentUpon>
67    </EmbeddedResource>
68    <EmbeddedResource Include="Properties\Resources.resx">
69      <Generator>ResXFileCodeGenerator</Generator>
70      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
71      <SubType>Designer</SubType>
72    </EmbeddedResource>
73    <EmbeddedResource Include="WorkspaceSelector.resx">
74      <DependentUpon>WorkspaceSelector.cs</DependentUpon>
75    </EmbeddedResource>
76    <Compile Include="Properties\Resources.Designer.cs">
77      <AutoGen>True</AutoGen>
78      <DependentUpon>Resources.resx</DependentUpon>
79      <DesignTime>True</DesignTime>
80    </Compile>
81    <None Include="Properties\Settings.settings">
82      <Generator>SettingsSingleFileGenerator</Generator>
83      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
84    </None>
85    <Compile Include="Properties\Settings.Designer.cs">
86      <AutoGen>True</AutoGen>
87      <DependentUpon>Settings.settings</DependentUpon>
88      <DesignTimeSharedInput>True</DesignTimeSharedInput>
89    </Compile>
90    <Compile Include="Inclusion.cs" />
91    <Compile Include="TimeFormat.cs" />
92    <Compile Include="Token.cs" />
93    <Compile Include="Tokenizer.cs" />
94    <Compile Include="Workspace.cs" />
95    <Compile Include="WorkspaceSelector.cs">
96      <SubType>Form</SubType>
97    </Compile>
98    <Compile Include="WorkspaceSelector.Designer.cs">
99      <DependentUpon>WorkspaceSelector.cs</DependentUpon>
100    </Compile>
101  </ItemGroup>
102  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110</Project>
Note: See TracBrowser for help on using the browser.