root/lang/csharp/MTFileUploader/MTFileUploader/MTFileUploader.csproj

Revision 11243, 4.4 kB (checked in by mayuki, 8 months ago)

接続先を複数登録できるようにした。

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>{01A78A51-7F64-440D-B391-4063F88DD8F7}</ProjectGuid>
9    <OutputType>WinExe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>MTFileUploader</RootNamespace>
12    <AssemblyName>MTFileUploader</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>none</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="CookComputing.XmlRpcV2, Version=2.3.0.1, Culture=neutral, processorArchitecture=MSIL" />
35    <Reference Include="System" />
36    <Reference Include="System.Core">
37      <RequiredTargetFramework>3.5</RequiredTargetFramework>
38    </Reference>
39    <Reference Include="System.Xml.Linq">
40      <RequiredTargetFramework>3.5</RequiredTargetFramework>
41    </Reference>
42    <Reference Include="System.Data.DataSetExtensions">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data" />
46    <Reference Include="System.Deployment" />
47    <Reference Include="System.Drawing" />
48    <Reference Include="System.Windows.Forms" />
49    <Reference Include="System.Xml" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="MainForm.cs">
53      <SubType>Form</SubType>
54    </Compile>
55    <Compile Include="MainForm.Designer.cs">
56      <DependentUpon>MainForm.cs</DependentUpon>
57    </Compile>
58    <Compile Include="MovableTypeAPI.cs" />
59    <Compile Include="Program.cs" />
60    <Compile Include="Properties\AssemblyInfo.cs" />
61    <EmbeddedResource Include="MainForm.resx">
62      <DependentUpon>MainForm.cs</DependentUpon>
63      <SubType>Designer</SubType>
64    </EmbeddedResource>
65    <EmbeddedResource Include="Properties\Resources.resx">
66      <Generator>ResXFileCodeGenerator</Generator>
67      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
68      <SubType>Designer</SubType>
69    </EmbeddedResource>
70    <EmbeddedResource Include="SettingsForm.resx">
71      <DependentUpon>SettingsForm.cs</DependentUpon>
72      <SubType>Designer</SubType>
73    </EmbeddedResource>
74    <Compile Include="Properties\Resources.Designer.cs">
75      <AutoGen>True</AutoGen>
76      <DependentUpon>Resources.resx</DependentUpon>
77    </Compile>
78    <None Include="app.config" />
79    <None Include="Properties\Settings.settings">
80      <Generator>SettingsSingleFileGenerator</Generator>
81      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
82    </None>
83    <Compile Include="Properties\Settings.Designer.cs">
84      <AutoGen>True</AutoGen>
85      <DependentUpon>Settings.settings</DependentUpon>
86      <DesignTimeSharedInput>True</DesignTimeSharedInput>
87    </Compile>
88    <Compile Include="Settings.cs" />
89    <Compile Include="SettingsForm.cs">
90      <SubType>Form</SubType>
91    </Compile>
92    <Compile Include="SettingsForm.Designer.cs">
93      <DependentUpon>SettingsForm.cs</DependentUpon>
94    </Compile>
95    <Compile Include="SiteSettings.cs" />
96  </ItemGroup>
97  <ItemGroup>
98    <Content Include="CookComputing.XmlRpcV2.dll" />
99  </ItemGroup>
100  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
101  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102       Other similar extension points exist, see Microsoft.Common.targets.
103  <Target Name="BeforeBuild">
104  </Target>
105  <Target Name="AfterBuild">
106  </Target>
107  -->
108</Project>
Note: See TracBrowser for help on using the browser.