root/lang/csharp/Criw-0/Criw-0.csproj

Revision 1736, 5.5 kB (checked in by mayuki, 14 months ago)

lang/csharp: WZERO3などで動くIRCクライアントのサンプル実装 Criw-0 を追加。

Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>8.0.50727</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{8952089B-ED5B-4657-9C3B-9917974542B4}</ProjectGuid>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>Criw0</RootNamespace>
11    <AssemblyName>Criw0</AssemblyName>
12    <ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
13    <PlatformFamilyName>PocketPC</PlatformFamilyName>
14    <PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
15    <OSVersion>5.01</OSVersion>
16    <DeployDirSuffix>Criw_0</DeployDirSuffix>
17    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
18    <FormFactorID>
19    </FormFactorID>
20    <StartupObject>Misuzilla.Applications.Mobile.Criw0.Program</StartupObject>
21  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>full</DebugType>
25    <Optimize>false</Optimize>
26    <OutputPath>bin\Debug\</OutputPath>
27    <DefineConstants>DEBUG;TRACE;$(PlatformFamilyName)</DefineConstants>
28    <NoStdLib>true</NoStdLib>
29    <NoConfig>true</NoConfig>
30    <ErrorReport>prompt</ErrorReport>
31    <FileAlignment>512</FileAlignment>
32    <WarningLevel>4</WarningLevel>
33    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36    <DebugType>pdbonly</DebugType>
37    <Optimize>true</Optimize>
38    <OutputPath>bin\Release\</OutputPath>
39    <DefineConstants>TRACE;$(PlatformFamilyName)</DefineConstants>
40    <NoStdLib>true</NoStdLib>
41    <NoConfig>true</NoConfig>
42    <ErrorReport>prompt</ErrorReport>
43    <FileAlignment>512</FileAlignment>
44    <WarningLevel>4</WarningLevel>
45    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
46  </PropertyGroup>
47  <ItemGroup>
48    <Reference Include="mscorlib" />
49    <Reference Include="System" />
50    <Reference Include="System.Data" />
51    <Reference Include="System.Drawing" />
52    <Reference Include="System.Windows.Forms" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="AutoJoinSettingForm.cs">
57      <SubType>Form</SubType>
58    </Compile>
59    <Compile Include="AutoJoinSettingForm.Designer.cs">
60      <DependentUpon>AutoJoinSettingForm.cs</DependentUpon>
61    </Compile>
62    <Compile Include="ConnectionForm.cs">
63      <SubType>Form</SubType>
64    </Compile>
65    <Compile Include="ConnectionForm.designer.cs">
66      <DependentUpon>ConnectionForm.cs</DependentUpon>
67    </Compile>
68    <Compile Include="Converter.cs" />
69    <Compile Include="ErrorReply.cs" />
70    <Compile Include="IRCConnection.cs" />
71    <Compile Include="IRCException.cs" />
72    <Compile Include="IRCMessage.cs" />
73    <Compile Include="JoinForm.cs">
74      <SubType>Form</SubType>
75    </Compile>
76    <Compile Include="JoinForm.designer.cs">
77      <DependentUpon>JoinForm.cs</DependentUpon>
78    </Compile>
79    <Compile Include="MainForm.cs">
80      <SubType>Form</SubType>
81    </Compile>
82    <Compile Include="MainForm.designer.cs">
83      <DependentUpon>MainForm.cs</DependentUpon>
84    </Compile>
85    <Compile Include="NumericReply.cs" />
86    <Compile Include="Program.cs" />
87    <Compile Include="Properties\AssemblyInfo.cs" />
88    <EmbeddedResource Include="AutoJoinSettingForm.resx">
89      <SubType>Designer</SubType>
90      <DependentUpon>AutoJoinSettingForm.cs</DependentUpon>
91    </EmbeddedResource>
92    <EmbeddedResource Include="ConnectionForm.resx">
93      <DependentUpon>ConnectionForm.cs</DependentUpon>
94      <SubType>Designer</SubType>
95    </EmbeddedResource>
96    <EmbeddedResource Include="JoinForm.resx">
97      <DependentUpon>JoinForm.cs</DependentUpon>
98      <SubType>Designer</SubType>
99    </EmbeddedResource>
100    <EmbeddedResource Include="MainForm.resx">
101      <DependentUpon>MainForm.cs</DependentUpon>
102      <SubType>Designer</SubType>
103    </EmbeddedResource>
104    <EmbeddedResource Include="Properties\Resources.resx">
105      <Generator>ResXFileCodeGenerator</Generator>
106      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
107      <SubType>Designer</SubType>
108    </EmbeddedResource>
109    <Compile Include="Properties\Resources.Designer.cs">
110      <AutoGen>True</AutoGen>
111      <DependentUpon>Resources.resx</DependentUpon>
112      <DesignTime>True</DesignTime>
113    </Compile>
114    <Compile Include="Setting.cs" />
115    <Compile Include="SettingManager.cs" />
116  </ItemGroup>
117  <Import Condition="'$(TargetFrameworkVersion)' == 'v1.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.v1.targets" />
118  <Import Condition="'$(TargetFrameworkVersion)' == 'v2.0'" Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
119  <ProjectExtensions>
120    <VisualStudio>
121      <FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
122        <HostingProcess disable="1" />
123      </FlavorProperties>
124    </VisualStudio>
125  </ProjectExtensions>
126  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
127       Other similar extension points exist, see Microsoft.Common.targets.
128  <Target Name="BeforeBuild">
129  </Target>
130  <Target Name="AfterBuild">
131  </Target>
132  -->
133</Project>
Note: See TracBrowser for help on using the browser.