root/lang/csharp/Translater/Jisho.csproj

Revision 15264, 3.5 kB (checked in by seasons, 6 months ago)

翻訳エンジンプラグイン作成サンプル
実際に使ってみたい人は、bin/Debug/Jisho.exeを実行するとよろし。

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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{AF5A46E6-21D5-41B3-A830-C757085B7757}</ProjectGuid>
9    <OutputType>WinExe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Jisho</RootNamespace>
12    <AssemblyName>Jisho</AssemblyName>
13    <TargetFrameworkVersion>v3.0</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="IJishoPlugin, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
35      <SpecificVersion>False</SpecificVersion>
36      <HintPath>plugins\JishoPlugin\bin\Debug\IJishoPlugin.dll</HintPath>
37    </Reference>
38    <Reference Include="System" />
39    <Reference Include="System.Data" />
40    <Reference Include="System.Deployment" />
41    <Reference Include="System.Drawing" />
42    <Reference Include="System.Windows.Forms" />
43    <Reference Include="System.Xml" />
44  </ItemGroup>
45  <ItemGroup>
46    <Compile Include="Form1.cs">
47      <SubType>Form</SubType>
48    </Compile>
49    <Compile Include="Form1.Designer.cs">
50      <DependentUpon>Form1.cs</DependentUpon>
51    </Compile>
52    <Compile Include="Program.cs" />
53    <Compile Include="Properties\AssemblyInfo.cs" />
54    <EmbeddedResource Include="Form1.resx">
55      <DependentUpon>Form1.cs</DependentUpon>
56    </EmbeddedResource>
57    <EmbeddedResource Include="Properties\Resources.resx">
58      <Generator>ResXFileCodeGenerator</Generator>
59      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
60      <SubType>Designer</SubType>
61    </EmbeddedResource>
62    <Compile Include="Properties\Resources.Designer.cs">
63      <AutoGen>True</AutoGen>
64      <DependentUpon>Resources.resx</DependentUpon>
65    </Compile>
66    <None Include="Properties\Settings.settings">
67      <Generator>SettingsSingleFileGenerator</Generator>
68      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
69    </None>
70    <Compile Include="Properties\Settings.Designer.cs">
71      <AutoGen>True</AutoGen>
72      <DependentUpon>Settings.settings</DependentUpon>
73      <DesignTimeSharedInput>True</DesignTimeSharedInput>
74    </Compile>
75  </ItemGroup>
76  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
77  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
78       Other similar extension points exist, see Microsoft.Common.targets.
79  <Target Name="BeforeBuild">
80  </Target>
81  <Target Name="AfterBuild">
82  </Target>
83  -->
84</Project>
Note: See TracBrowser for help on using the browser.