markus / SmartUpdate / SmartUpdate.csproj @ 80856edb
이력 | 보기 | 이력해설 | 다운로드 (13.3 KB)
1 | c4a4d59c | ljiyeon | <?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>{EA12FDC9-575E-471B-A691-3C31D03EA24C}</ProjectGuid> |
||
8 | <OutputType>WinExe</OutputType> |
||
9 | <RootNamespace>SmartUpdate</RootNamespace> |
||
10 | <AssemblyName>SmartUpdate</AssemblyName> |
||
11 | d4a60930 | djkim | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
12 | c4a4d59c | ljiyeon | <FileAlignment>512</FileAlignment> |
13 | <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
||
14 | <WarningLevel>4</WarningLevel> |
||
15 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
||
16 | <Deterministic>true</Deterministic> |
||
17 | <PublishUrl>publish\</PublishUrl> |
||
18 | <Install>true</Install> |
||
19 | <InstallFrom>Disk</InstallFrom> |
||
20 | <UpdateEnabled>false</UpdateEnabled> |
||
21 | <UpdateMode>Foreground</UpdateMode> |
||
22 | <UpdateInterval>7</UpdateInterval> |
||
23 | <UpdateIntervalUnits>Days</UpdateIntervalUnits> |
||
24 | <UpdatePeriodically>false</UpdatePeriodically> |
||
25 | <UpdateRequired>false</UpdateRequired> |
||
26 | <MapFileExtensions>true</MapFileExtensions> |
||
27 | <ApplicationRevision>0</ApplicationRevision> |
||
28 | <ApplicationVersion>1.0.0.%2a</ApplicationVersion> |
||
29 | <IsWebBootstrapper>false</IsWebBootstrapper> |
||
30 | <UseApplicationTrust>false</UseApplicationTrust> |
||
31 | <BootstrapperEnabled>true</BootstrapperEnabled> |
||
32 | <TargetFrameworkProfile /> |
||
33 | </PropertyGroup> |
||
34 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
35 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
36 | <DebugSymbols>true</DebugSymbols> |
||
37 | <DebugType>full</DebugType> |
||
38 | <Optimize>false</Optimize> |
||
39 | d71b4688 | ljiyeon | <OutputPath>..\Setup\</OutputPath> |
40 | c4a4d59c | ljiyeon | <DefineConstants>DEBUG;TRACE</DefineConstants> |
41 | <ErrorReport>prompt</ErrorReport> |
||
42 | <WarningLevel>4</WarningLevel> |
||
43 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
44 | c4a4d59c | ljiyeon | </PropertyGroup> |
45 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
46 | 3c71b3a5 | taeseongkim | <PlatformTarget>x64</PlatformTarget> |
47 | c4a4d59c | ljiyeon | <DebugType>pdbonly</DebugType> |
48 | <Optimize>true</Optimize> |
||
49 | <OutputPath>bin\Release\</OutputPath> |
||
50 | <DefineConstants>TRACE</DefineConstants> |
||
51 | <ErrorReport>prompt</ErrorReport> |
||
52 | <WarningLevel>4</WarningLevel> |
||
53 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
54 | c4a4d59c | ljiyeon | </PropertyGroup> |
55 | <PropertyGroup> |
||
56 | <ApplicationIcon>SmartUpdate.ico</ApplicationIcon> |
||
57 | </PropertyGroup> |
||
58 | f9d42594 | djkim | <PropertyGroup> |
59 | <TargetZone>LocalIntranet</TargetZone> |
||
60 | </PropertyGroup> |
||
61 | <PropertyGroup> |
||
62 | <GenerateManifests>false</GenerateManifests> |
||
63 | </PropertyGroup> |
||
64 | <PropertyGroup> |
||
65 | <ApplicationManifest>Properties\app.manifest</ApplicationManifest> |
||
66 | </PropertyGroup> |
||
67 | f19ebe30 | djkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> |
68 | <DebugSymbols>true</DebugSymbols> |
||
69 | <OutputPath>bin\x86\Debug\</OutputPath> |
||
70 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
71 | <DebugType>full</DebugType> |
||
72 | <PlatformTarget>x86</PlatformTarget> |
||
73 | <ErrorReport>prompt</ErrorReport> |
||
74 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
75 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
76 | f19ebe30 | djkim | </PropertyGroup> |
77 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
||
78 | <OutputPath>bin\x86\Release\</OutputPath> |
||
79 | <DefineConstants>TRACE</DefineConstants> |
||
80 | <Optimize>true</Optimize> |
||
81 | <DebugType>pdbonly</DebugType> |
||
82 | <PlatformTarget>x86</PlatformTarget> |
||
83 | <ErrorReport>prompt</ErrorReport> |
||
84 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
85 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
86 | f19ebe30 | djkim | </PropertyGroup> |
87 | 3c71b3a5 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
88 | <DebugSymbols>true</DebugSymbols> |
||
89 | <OutputPath>bin\x64\Debug\</OutputPath> |
||
90 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
91 | <DebugType>full</DebugType> |
||
92 | <PlatformTarget>x64</PlatformTarget> |
||
93 | <ErrorReport>prompt</ErrorReport> |
||
94 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
95 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
96 | 3c71b3a5 | taeseongkim | </PropertyGroup> |
97 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
98 | <OutputPath>bin\x64\Release\</OutputPath> |
||
99 | <DefineConstants>TRACE</DefineConstants> |
||
100 | <Optimize>true</Optimize> |
||
101 | <DebugType>pdbonly</DebugType> |
||
102 | <PlatformTarget>x64</PlatformTarget> |
||
103 | <ErrorReport>prompt</ErrorReport> |
||
104 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
105 | d4a60930 | djkim | <Prefer32Bit>false</Prefer32Bit> |
106 | 3c71b3a5 | taeseongkim | </PropertyGroup> |
107 | 9f55b953 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|AnyCPU'"> |
108 | <DebugSymbols>true</DebugSymbols> |
||
109 | <OutputPath>bin\Debug_HyoSung\</OutputPath> |
||
110 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
111 | <DebugType>full</DebugType> |
||
112 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
113 | <ErrorReport>prompt</ErrorReport> |
||
114 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
115 | </PropertyGroup> |
||
116 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|x86'"> |
||
117 | <DebugSymbols>true</DebugSymbols> |
||
118 | <OutputPath>bin\x86\Debug_HyoSung\</OutputPath> |
||
119 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
120 | <DebugType>full</DebugType> |
||
121 | <PlatformTarget>x86</PlatformTarget> |
||
122 | <ErrorReport>prompt</ErrorReport> |
||
123 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
124 | </PropertyGroup> |
||
125 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_HyoSung|x64'"> |
||
126 | <DebugSymbols>true</DebugSymbols> |
||
127 | <OutputPath>bin\x64\Debug_HyoSung\</OutputPath> |
||
128 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
129 | <DebugType>full</DebugType> |
||
130 | <PlatformTarget>x64</PlatformTarget> |
||
131 | <ErrorReport>prompt</ErrorReport> |
||
132 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
133 | </PropertyGroup> |
||
134 | f65e6c02 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|AnyCPU'"> |
135 | <DebugSymbols>true</DebugSymbols> |
||
136 | <OutputPath>bin\Debug_CadExport\</OutputPath> |
||
137 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
138 | <DebugType>full</DebugType> |
||
139 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
140 | <ErrorReport>prompt</ErrorReport> |
||
141 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
142 | </PropertyGroup> |
||
143 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|x86'"> |
||
144 | <DebugSymbols>true</DebugSymbols> |
||
145 | <OutputPath>bin\x86\Debug_CadExport\</OutputPath> |
||
146 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
147 | <DebugType>full</DebugType> |
||
148 | <PlatformTarget>x86</PlatformTarget> |
||
149 | <ErrorReport>prompt</ErrorReport> |
||
150 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
151 | </PropertyGroup> |
||
152 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_CadExport|x64'"> |
||
153 | <DebugSymbols>true</DebugSymbols> |
||
154 | <OutputPath>bin\x64\Debug_CadExport\</OutputPath> |
||
155 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
156 | <DebugType>full</DebugType> |
||
157 | <PlatformTarget>x64</PlatformTarget> |
||
158 | <ErrorReport>prompt</ErrorReport> |
||
159 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
160 | </PropertyGroup> |
||
161 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|AnyCPU'"> |
||
162 | <DebugSymbols>true</DebugSymbols> |
||
163 | <OutputPath>bin\Debug_SNI\</OutputPath> |
||
164 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
165 | <DebugType>full</DebugType> |
||
166 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
167 | <ErrorReport>prompt</ErrorReport> |
||
168 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
169 | </PropertyGroup> |
||
170 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|x86'"> |
||
171 | <DebugSymbols>true</DebugSymbols> |
||
172 | <OutputPath>bin\x86\Debug_SNI\</OutputPath> |
||
173 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
174 | <DebugType>full</DebugType> |
||
175 | <PlatformTarget>x86</PlatformTarget> |
||
176 | <ErrorReport>prompt</ErrorReport> |
||
177 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
178 | </PropertyGroup> |
||
179 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_SNI|x64'"> |
||
180 | <DebugSymbols>true</DebugSymbols> |
||
181 | <OutputPath>bin\x64\Debug_SNI\</OutputPath> |
||
182 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
183 | <DebugType>full</DebugType> |
||
184 | <PlatformTarget>x64</PlatformTarget> |
||
185 | <ErrorReport>prompt</ErrorReport> |
||
186 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
187 | </PropertyGroup> |
||
188 | 80856edb | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|AnyCPU'"> |
189 | <DebugSymbols>true</DebugSymbols> |
||
190 | <OutputPath>bin\Release_Hyosung\</OutputPath> |
||
191 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
192 | <DebugType>full</DebugType> |
||
193 | <PlatformTarget>AnyCPU</PlatformTarget> |
||
194 | <ErrorReport>prompt</ErrorReport> |
||
195 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
196 | <Prefer32Bit>true</Prefer32Bit> |
||
197 | </PropertyGroup> |
||
198 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|x86'"> |
||
199 | <DebugSymbols>true</DebugSymbols> |
||
200 | <OutputPath>bin\x86\Release_Hyosung\</OutputPath> |
||
201 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
202 | <DebugType>full</DebugType> |
||
203 | <PlatformTarget>x86</PlatformTarget> |
||
204 | <ErrorReport>prompt</ErrorReport> |
||
205 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
206 | <Prefer32Bit>true</Prefer32Bit> |
||
207 | </PropertyGroup> |
||
208 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_Hyosung|x64'"> |
||
209 | <DebugSymbols>true</DebugSymbols> |
||
210 | <OutputPath>bin\x64\Release_Hyosung\</OutputPath> |
||
211 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
212 | <DebugType>full</DebugType> |
||
213 | <PlatformTarget>x64</PlatformTarget> |
||
214 | <ErrorReport>prompt</ErrorReport> |
||
215 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
216 | <Prefer32Bit>true</Prefer32Bit> |
||
217 | </PropertyGroup> |
||
218 | c4a4d59c | ljiyeon | <ItemGroup> |
219 | <Reference Include="System" /> |
||
220 | <Reference Include="System.Data" /> |
||
221 | <Reference Include="System.Drawing" /> |
||
222 | <Reference Include="System.Xml" /> |
||
223 | <Reference Include="Microsoft.CSharp" /> |
||
224 | <Reference Include="System.Core" /> |
||
225 | <Reference Include="System.Xml.Linq" /> |
||
226 | <Reference Include="System.Data.DataSetExtensions" /> |
||
227 | <Reference Include="System.Xaml"> |
||
228 | <RequiredTargetFramework>4.0</RequiredTargetFramework> |
||
229 | </Reference> |
||
230 | <Reference Include="WindowsBase" /> |
||
231 | <Reference Include="PresentationCore" /> |
||
232 | <Reference Include="PresentationFramework" /> |
||
233 | </ItemGroup> |
||
234 | <ItemGroup> |
||
235 | <ApplicationDefinition Include="App.xaml"> |
||
236 | <Generator>MSBuild:Compile</Generator> |
||
237 | <SubType>Designer</SubType> |
||
238 | </ApplicationDefinition> |
||
239 | <Page Include="MainWindow.xaml"> |
||
240 | <Generator>MSBuild:Compile</Generator> |
||
241 | <SubType>Designer</SubType> |
||
242 | </Page> |
||
243 | <Compile Include="App.xaml.cs"> |
||
244 | <DependentUpon>App.xaml</DependentUpon> |
||
245 | <SubType>Code</SubType> |
||
246 | </Compile> |
||
247 | <Compile Include="FileToImageIconConverter.cs" /> |
||
248 | <Compile Include="IconManager.cs" /> |
||
249 | <Compile Include="IconHelper.cs" /> |
||
250 | <Compile Include="IntSecurity.cs" /> |
||
251 | <Compile Include="MainWindow.xaml.cs"> |
||
252 | <DependentUpon>MainWindow.xaml</DependentUpon> |
||
253 | <SubType>Code</SubType> |
||
254 | </Compile> |
||
255 | </ItemGroup> |
||
256 | <ItemGroup> |
||
257 | <Compile Include="Properties\AssemblyInfo.cs"> |
||
258 | <SubType>Code</SubType> |
||
259 | </Compile> |
||
260 | <Compile Include="Properties\Resources.Designer.cs"> |
||
261 | <AutoGen>True</AutoGen> |
||
262 | <DesignTime>True</DesignTime> |
||
263 | <DependentUpon>Resources.resx</DependentUpon> |
||
264 | </Compile> |
||
265 | <Compile Include="Properties\Settings.Designer.cs"> |
||
266 | <AutoGen>True</AutoGen> |
||
267 | <DependentUpon>Settings.settings</DependentUpon> |
||
268 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
269 | </Compile> |
||
270 | <EmbeddedResource Include="Properties\Resources.resx"> |
||
271 | <Generator>ResXFileCodeGenerator</Generator> |
||
272 | <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
||
273 | </EmbeddedResource> |
||
274 | <None Include="packages.config" /> |
||
275 | f9d42594 | djkim | <None Include="Properties\app.manifest" /> |
276 | c4a4d59c | ljiyeon | <None Include="Properties\Settings.settings"> |
277 | <Generator>SettingsSingleFileGenerator</Generator> |
||
278 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
279 | </None> |
||
280 | </ItemGroup> |
||
281 | <ItemGroup> |
||
282 | <None Include="App.config" /> |
||
283 | </ItemGroup> |
||
284 | <ItemGroup> |
||
285 | <Resource Include="SmartUpdate.ico" /> |
||
286 | </ItemGroup> |
||
287 | <ItemGroup> |
||
288 | <BootstrapperPackage Include=".NETFramework,Version=v4.6.1"> |
||
289 | <Visible>False</Visible> |
||
290 | <ProductName>Microsoft .NET Framework 4.6.1%28x86 및 x64%29</ProductName> |
||
291 | <Install>true</Install> |
||
292 | </BootstrapperPackage> |
||
293 | <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
||
294 | <Visible>False</Visible> |
||
295 | <ProductName>.NET Framework 3.5 SP1</ProductName> |
||
296 | <Install>false</Install> |
||
297 | </BootstrapperPackage> |
||
298 | </ItemGroup> |
||
299 | <ItemGroup> |
||
300 | <Resource Include="Resources\close-window.png" /> |
||
301 | <Resource Include="Resources\maximize-window.png" /> |
||
302 | <Resource Include="Resources\minimize-window.png" /> |
||
303 | </ItemGroup> |
||
304 | <ItemGroup> |
||
305 | <Resource Include="Resources\UpdateImg.png" /> |
||
306 | </ItemGroup> |
||
307 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
308 | 3c71b3a5 | taeseongkim | <PropertyGroup> |
309 | <PostBuildEvent>$(ProjectDir)\deploy.bat $(ProjectDir) $(TargetDir) $(Platform)</PostBuildEvent> |
||
310 | </PropertyGroup> |
||
311 | c4a4d59c | ljiyeon | </Project> |