개정판 664ea2e1
Markus에서 markusupdate를 변경하도록 수정
Change-Id: I4c2fe33f46732a9dc6b1fe683771c5acbcfd5d36
DownloadManager/DownloadManager.csproj | ||
---|---|---|
13 | 13 |
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
14 | 14 |
<Deterministic>true</Deterministic> |
15 | 15 |
</PropertyGroup> |
16 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Thumbnail|AnyCPU' "> |
|
17 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
18 |
<DebugSymbols>true</DebugSymbols> |
|
19 |
<DebugType>full</DebugType> |
|
20 |
<Optimize>true</Optimize> |
|
21 |
<OutputPath>..\publish\Downloader\</OutputPath> |
|
22 |
<DefineConstants> |
|
23 |
</DefineConstants> |
|
24 |
<ErrorReport>prompt</ErrorReport> |
|
25 |
<WarningLevel>3</WarningLevel> |
|
26 |
<Prefer32Bit>false</Prefer32Bit> |
|
27 |
</PropertyGroup> |
|
28 | 16 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
29 | 17 |
<PlatformTarget>AnyCPU</PlatformTarget> |
30 | 18 |
<DebugType>pdbonly</DebugType> |
... | ... | |
36 | 24 |
<WarningLevel>3</WarningLevel> |
37 | 25 |
<Prefer32Bit>false</Prefer32Bit> |
38 | 26 |
</PropertyGroup> |
39 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_FileDownloader|AnyCPU'"> |
|
40 |
<DebugSymbols>true</DebugSymbols> |
|
41 |
<OutputPath>..\publish\Downloader\</OutputPath> |
|
42 |
<Optimize>true</Optimize> |
|
43 |
<WarningLevel>3</WarningLevel> |
|
44 |
<DebugType>full</DebugType> |
|
45 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
46 |
<ErrorReport>prompt</ErrorReport> |
|
47 |
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
|
48 |
<Prefer32Bit>false</Prefer32Bit> |
|
49 |
</PropertyGroup> |
|
50 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_Monitor|AnyCPU'"> |
|
51 |
<DebugSymbols>true</DebugSymbols> |
|
52 |
<OutputPath>..\publish\Downloader\</OutputPath> |
|
53 |
<Optimize>true</Optimize> |
|
54 |
<WarningLevel>3</WarningLevel> |
|
55 |
<DebugType>full</DebugType> |
|
56 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
57 |
<ErrorReport>prompt</ErrorReport> |
|
58 |
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
|
59 |
<Prefer32Bit>false</Prefer32Bit> |
|
60 |
</PropertyGroup> |
|
61 | 27 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> |
62 | 28 |
<OutputPath>..\publish\Downloader\</OutputPath> |
63 | 29 |
<Prefer32Bit>false</Prefer32Bit> |
64 |
<Optimize>true</Optimize> |
|
65 |
</PropertyGroup> |
|
66 |
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Default|AnyCPU'"> |
|
67 |
<OutputPath>bin\Release_Default\</OutputPath> |
|
68 |
<Optimize>true</Optimize> |
|
69 |
<WarningLevel>3</WarningLevel> |
|
70 |
<DebugType>pdbonly</DebugType> |
|
71 |
<PlatformTarget>AnyCPU</PlatformTarget> |
|
72 |
<ErrorReport>prompt</ErrorReport> |
|
73 |
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
|
30 |
<Optimize>false</Optimize> |
|
31 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
74 | 32 |
</PropertyGroup> |
75 | 33 |
<ItemGroup> |
34 |
<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> |
|
76 | 40 |
<Reference Include="System" /> |
77 | 41 |
<Reference Include="System.Core" /> |
42 |
<Reference Include="System.IO.Compression" /> |
|
43 |
<Reference Include="System.IO.Compression.FileSystem" /> |
|
78 | 44 |
<Reference Include="System.ServiceModel" /> |
45 |
<Reference Include="System.Web" /> |
|
79 | 46 |
<Reference Include="System.Xml.Linq" /> |
80 | 47 |
<Reference Include="System.Data.DataSetExtensions" /> |
81 | 48 |
<Reference Include="Microsoft.CSharp" /> |
... | ... | |
84 | 51 |
<Reference Include="System.Xml" /> |
85 | 52 |
</ItemGroup> |
86 | 53 |
<ItemGroup> |
54 |
<Compile Include="CheckAutoUpdate.cs" /> |
|
87 | 55 |
<Compile Include="LinqExtension.cs" /> |
88 | 56 |
<Compile Include="PageItem.cs" /> |
89 | 57 |
<Compile Include="PageLoadCompletedEventArgs.cs" /> |
... | ... | |
93 | 61 |
</ItemGroup> |
94 | 62 |
<ItemGroup> |
95 | 63 |
<None Include="App.config" /> |
64 |
<None Include="Log.config"> |
|
65 |
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
66 |
</None> |
|
96 | 67 |
<None Include="packages.config" /> |
97 | 68 |
</ItemGroup> |
98 | 69 |
<ItemGroup> |
내보내기 Unified diff