root/TwitterIrcGateway/trunk/TwitterIrcGatewayCore/TwitterIrcGatewayCore.csproj

Revision 412, 3.7 kB (checked in by tomoyo, 4 months ago)

アドインの仕組みを取り込んで、いくつかの機能をアドインの機構にのる形にした。

Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{8A256703-BDC7-4E96-8AC3-89A56A2AFB86}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>Misuzilla.Applications.TwitterIrcGateway</RootNamespace>
11    <AssemblyName>TwitterIrcGatewayCore</AssemblyName>
12    <FileUpgradeFlags>
13    </FileUpgradeFlags>
14    <OldToolsVersion>2.0</OldToolsVersion>
15    <UpgradeBackupLocation>
16    </UpgradeBackupLocation>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
35    <DocumentationFile>
36    </DocumentationFile>
37  </PropertyGroup>
38  <ItemGroup>
39    <Reference Include="System" />
40    <Reference Include="System.Data" />
41    <Reference Include="System.Xml" />
42  </ItemGroup>
43  <ItemGroup>
44    <Compile Include="AddInManager.cs" />
45    <Compile Include="AddIns\ClientMessageWait.cs" />
46    <Compile Include="AddIns\ExtensionCommands.cs" />
47    <Compile Include="AddIns\IAddIn.cs" />
48    <Compile Include="AddIns\RemoveRedundantSuffix.cs" />
49    <Compile Include="AddIns\ResolveTinyUrl.cs" />
50    <Compile Include="AddIns\TypableMapSupport.cs" />
51    <Compile Include="Config.cs" />
52    <Compile Include="EventArgs.cs" />
53    <Compile Include="Filter.cs" />
54    <Compile Include="Group.cs" />
55    <Compile Include="IRCClient\ChannelMode.cs" />
56    <Compile Include="IRCClient\ChannelModeTypes.cs" />
57    <Compile Include="IRCClient\Converter.cs" />
58    <Compile Include="IRCClient\ErrorReply.cs" />
59    <Compile Include="IRCClient\IRCConnection.cs" />
60    <Compile Include="IRCClient\IRCException.cs" />
61    <Compile Include="IRCClient\IRCMessage.cs" />
62    <Compile Include="IRCClient\NumericReply.cs" />
63    <Compile Include="IrcTraceListener.cs" />
64    <Compile Include="Properties\AssemblyInfo.cs" />
65    <Compile Include="Server.cs" />
66    <Compile Include="Session.cs" />
67    <Compile Include="TwitterIMService.cs" />
68    <Compile Include="TwitterService.cs">
69    </Compile>
70    <Compile Include="AddIns\TypableMap\TypableMap.cs" />
71    <Compile Include="AddIns\TypableMap\TypableMapCommandProcessor.cs" />
72    <Compile Include="Utility.cs" />
73  </ItemGroup>
74  <ItemGroup>
75    <ProjectReference Include="agsXMPP\agsXMPP2008.csproj">
76      <Project>{DC39021C-FA24-4E34-AB4A-3260BB5314AF}</Project>
77      <Name>agsXMPP2008</Name>
78    </ProjectReference>
79  </ItemGroup>
80  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
81  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
82       Other similar extension points exist, see Microsoft.Common.targets.
83  <Target Name="BeforeBuild">
84  </Target>
85  <Target Name="AfterBuild">
86  </Target>
87  -->
88</Project>
Note: See TracBrowser for help on using the browser.