markus / DownloadManager / DownloadManager.csproj @ 664ea2e1
이력 | 보기 | 이력해설 | 다운로드 (3.34 KB)
1 | 2007ecaa | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||
3 | <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
||
4 | <PropertyGroup> |
||
5 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||
6 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
||
7 | <ProjectGuid>{E1AEB641-7B2B-4231-8518-2E4CF79AA64B}</ProjectGuid> |
||
8 | <OutputType>Exe</OutputType> |
||
9 | <RootNamespace>DownloadManager</RootNamespace> |
||
10 | <AssemblyName>DownloadManager</AssemblyName> |
||
11 | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
||
12 | <FileAlignment>512</FileAlignment> |
||
13 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
||
14 | <Deterministic>true</Deterministic> |
||
15 | </PropertyGroup> |
||
16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
17 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
18 | <DebugType>pdbonly</DebugType> |
||
19 | <Optimize>true</Optimize> |
||
20 | <OutputPath>..\publish\Downloader\</OutputPath> |
||
21 | <DefineConstants> |
||
22 | </DefineConstants> |
||
23 | <ErrorReport>prompt</ErrorReport> |
||
24 | <WarningLevel>3</WarningLevel> |
||
25 | <Prefer32Bit>false</Prefer32Bit> |
||
26 | </PropertyGroup> |
||
27 | 9d5b4bc2 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> |
28 | <OutputPath>..\publish\Downloader\</OutputPath> |
||
29 | <Prefer32Bit>false</Prefer32Bit> |
||
30 | 664ea2e1 | taeseongkim | <Optimize>false</Optimize> |
31 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
32 | 2007ecaa | taeseongkim | </PropertyGroup> |
33 | <ItemGroup> |
||
34 | 664ea2e1 | taeseongkim | <Reference Include="ConfigParser, Version=0.3.4.3, Culture=neutral, processorArchitecture=MSIL"> |
35 | <HintPath>..\packages\Salaros.ConfigParser.0.3.4\lib\net45\ConfigParser.dll</HintPath> |
||
36 | </Reference> |
||
37 | <Reference Include="log4net, Version=2.0.9.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"> |
||
38 | <HintPath>..\packages\log4net.2.0.9\lib\net45\log4net.dll</HintPath> |
||
39 | </Reference> |
||
40 | 2007ecaa | taeseongkim | <Reference Include="System" /> |
41 | <Reference Include="System.Core" /> |
||
42 | 664ea2e1 | taeseongkim | <Reference Include="System.IO.Compression" /> |
43 | <Reference Include="System.IO.Compression.FileSystem" /> |
||
44 | 2007ecaa | taeseongkim | <Reference Include="System.ServiceModel" /> |
45 | 664ea2e1 | taeseongkim | <Reference Include="System.Web" /> |
46 | 2007ecaa | taeseongkim | <Reference Include="System.Xml.Linq" /> |
47 | <Reference Include="System.Data.DataSetExtensions" /> |
||
48 | <Reference Include="Microsoft.CSharp" /> |
||
49 | <Reference Include="System.Data" /> |
||
50 | <Reference Include="System.Net.Http" /> |
||
51 | <Reference Include="System.Xml" /> |
||
52 | </ItemGroup> |
||
53 | <ItemGroup> |
||
54 | 664ea2e1 | taeseongkim | <Compile Include="CheckAutoUpdate.cs" /> |
55 | 2007ecaa | taeseongkim | <Compile Include="LinqExtension.cs" /> |
56 | <Compile Include="PageItem.cs" /> |
||
57 | <Compile Include="PageLoadCompletedEventArgs.cs" /> |
||
58 | <Compile Include="PageStorage.cs" /> |
||
59 | <Compile Include="Program.cs" /> |
||
60 | <Compile Include="Properties\AssemblyInfo.cs" /> |
||
61 | </ItemGroup> |
||
62 | <ItemGroup> |
||
63 | <None Include="App.config" /> |
||
64 | 664ea2e1 | taeseongkim | <None Include="Log.config"> |
65 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
||
66 | </None> |
||
67 | 9d5b4bc2 | taeseongkim | <None Include="packages.config" /> |
68 | 2007ecaa | taeseongkim | </ItemGroup> |
69 | <ItemGroup> |
||
70 | <ProjectReference Include="..\IIpc\IIpc.csproj"> |
||
71 | <Project>{07282278-92d8-4010-af9f-313c2aab08df}</Project> |
||
72 | <Name>IIpc</Name> |
||
73 | </ProjectReference> |
||
74 | </ItemGroup> |
||
75 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
76 | </Project> |