markus / SmartUpdate / SmartUpdate.csproj @ a34f58f6
이력 | 보기 | 이력해설 | 다운로드 (7.86 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 | <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> |
||
12 | <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 | 97cde7e3 | ljiyeon | <OutputPath>..\KCOM\bin\Debug\</OutputPath> |
40 | c4a4d59c | ljiyeon | <DefineConstants>DEBUG;TRACE</DefineConstants> |
41 | <ErrorReport>prompt</ErrorReport> |
||
42 | <WarningLevel>4</WarningLevel> |
||
43 | </PropertyGroup> |
||
44 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
45 | 3c71b3a5 | taeseongkim | <PlatformTarget>x64</PlatformTarget> |
46 | c4a4d59c | ljiyeon | <DebugType>pdbonly</DebugType> |
47 | <Optimize>true</Optimize> |
||
48 | <OutputPath>bin\Release\</OutputPath> |
||
49 | <DefineConstants>TRACE</DefineConstants> |
||
50 | <ErrorReport>prompt</ErrorReport> |
||
51 | <WarningLevel>4</WarningLevel> |
||
52 | </PropertyGroup> |
||
53 | <PropertyGroup> |
||
54 | <ApplicationIcon>SmartUpdate.ico</ApplicationIcon> |
||
55 | </PropertyGroup> |
||
56 | f9d42594 | djkim | <PropertyGroup> |
57 | <TargetZone>LocalIntranet</TargetZone> |
||
58 | </PropertyGroup> |
||
59 | <PropertyGroup> |
||
60 | <GenerateManifests>false</GenerateManifests> |
||
61 | </PropertyGroup> |
||
62 | <PropertyGroup> |
||
63 | <ApplicationManifest>Properties\app.manifest</ApplicationManifest> |
||
64 | </PropertyGroup> |
||
65 | f19ebe30 | djkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> |
66 | <DebugSymbols>true</DebugSymbols> |
||
67 | <OutputPath>bin\x86\Debug\</OutputPath> |
||
68 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
69 | <DebugType>full</DebugType> |
||
70 | <PlatformTarget>x86</PlatformTarget> |
||
71 | <ErrorReport>prompt</ErrorReport> |
||
72 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
73 | </PropertyGroup> |
||
74 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
||
75 | <OutputPath>bin\x86\Release\</OutputPath> |
||
76 | <DefineConstants>TRACE</DefineConstants> |
||
77 | <Optimize>true</Optimize> |
||
78 | <DebugType>pdbonly</DebugType> |
||
79 | <PlatformTarget>x86</PlatformTarget> |
||
80 | <ErrorReport>prompt</ErrorReport> |
||
81 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
82 | </PropertyGroup> |
||
83 | 3c71b3a5 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
84 | <DebugSymbols>true</DebugSymbols> |
||
85 | <OutputPath>bin\x64\Debug\</OutputPath> |
||
86 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
87 | <DebugType>full</DebugType> |
||
88 | <PlatformTarget>x64</PlatformTarget> |
||
89 | <ErrorReport>prompt</ErrorReport> |
||
90 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
91 | </PropertyGroup> |
||
92 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
93 | <OutputPath>bin\x64\Release\</OutputPath> |
||
94 | <DefineConstants>TRACE</DefineConstants> |
||
95 | <Optimize>true</Optimize> |
||
96 | <DebugType>pdbonly</DebugType> |
||
97 | <PlatformTarget>x64</PlatformTarget> |
||
98 | <ErrorReport>prompt</ErrorReport> |
||
99 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
100 | </PropertyGroup> |
||
101 | c4a4d59c | ljiyeon | <ItemGroup> |
102 | <Reference Include="System" /> |
||
103 | <Reference Include="System.Data" /> |
||
104 | <Reference Include="System.Drawing" /> |
||
105 | <Reference Include="System.Xml" /> |
||
106 | <Reference Include="Microsoft.CSharp" /> |
||
107 | <Reference Include="System.Core" /> |
||
108 | <Reference Include="System.Xml.Linq" /> |
||
109 | <Reference Include="System.Data.DataSetExtensions" /> |
||
110 | <Reference Include="System.Xaml"> |
||
111 | <RequiredTargetFramework>4.0</RequiredTargetFramework> |
||
112 | </Reference> |
||
113 | <Reference Include="WindowsBase" /> |
||
114 | <Reference Include="PresentationCore" /> |
||
115 | <Reference Include="PresentationFramework" /> |
||
116 | </ItemGroup> |
||
117 | <ItemGroup> |
||
118 | <ApplicationDefinition Include="App.xaml"> |
||
119 | <Generator>MSBuild:Compile</Generator> |
||
120 | <SubType>Designer</SubType> |
||
121 | </ApplicationDefinition> |
||
122 | <Page Include="MainWindow.xaml"> |
||
123 | <Generator>MSBuild:Compile</Generator> |
||
124 | <SubType>Designer</SubType> |
||
125 | </Page> |
||
126 | <Compile Include="App.xaml.cs"> |
||
127 | <DependentUpon>App.xaml</DependentUpon> |
||
128 | <SubType>Code</SubType> |
||
129 | </Compile> |
||
130 | <Compile Include="FileToImageIconConverter.cs" /> |
||
131 | <Compile Include="IconManager.cs" /> |
||
132 | <Compile Include="IconHelper.cs" /> |
||
133 | <Compile Include="IntSecurity.cs" /> |
||
134 | <Compile Include="MainWindow.xaml.cs"> |
||
135 | <DependentUpon>MainWindow.xaml</DependentUpon> |
||
136 | <SubType>Code</SubType> |
||
137 | </Compile> |
||
138 | </ItemGroup> |
||
139 | <ItemGroup> |
||
140 | <Compile Include="Properties\AssemblyInfo.cs"> |
||
141 | <SubType>Code</SubType> |
||
142 | </Compile> |
||
143 | <Compile Include="Properties\Resources.Designer.cs"> |
||
144 | <AutoGen>True</AutoGen> |
||
145 | <DesignTime>True</DesignTime> |
||
146 | <DependentUpon>Resources.resx</DependentUpon> |
||
147 | </Compile> |
||
148 | <Compile Include="Properties\Settings.Designer.cs"> |
||
149 | <AutoGen>True</AutoGen> |
||
150 | <DependentUpon>Settings.settings</DependentUpon> |
||
151 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
152 | </Compile> |
||
153 | <EmbeddedResource Include="Properties\Resources.resx"> |
||
154 | <Generator>ResXFileCodeGenerator</Generator> |
||
155 | <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
||
156 | </EmbeddedResource> |
||
157 | <None Include="packages.config" /> |
||
158 | f9d42594 | djkim | <None Include="Properties\app.manifest" /> |
159 | c4a4d59c | ljiyeon | <None Include="Properties\Settings.settings"> |
160 | <Generator>SettingsSingleFileGenerator</Generator> |
||
161 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
162 | </None> |
||
163 | </ItemGroup> |
||
164 | <ItemGroup> |
||
165 | <None Include="App.config" /> |
||
166 | </ItemGroup> |
||
167 | <ItemGroup> |
||
168 | <Resource Include="SmartUpdate.ico" /> |
||
169 | </ItemGroup> |
||
170 | <ItemGroup> |
||
171 | <BootstrapperPackage Include=".NETFramework,Version=v4.6.1"> |
||
172 | <Visible>False</Visible> |
||
173 | <ProductName>Microsoft .NET Framework 4.6.1%28x86 및 x64%29</ProductName> |
||
174 | <Install>true</Install> |
||
175 | </BootstrapperPackage> |
||
176 | <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
||
177 | <Visible>False</Visible> |
||
178 | <ProductName>.NET Framework 3.5 SP1</ProductName> |
||
179 | <Install>false</Install> |
||
180 | </BootstrapperPackage> |
||
181 | </ItemGroup> |
||
182 | <ItemGroup> |
||
183 | <Resource Include="Resources\close-window.png" /> |
||
184 | <Resource Include="Resources\maximize-window.png" /> |
||
185 | <Resource Include="Resources\minimize-window.png" /> |
||
186 | </ItemGroup> |
||
187 | <ItemGroup> |
||
188 | <Resource Include="Resources\UpdateImg.png" /> |
||
189 | </ItemGroup> |
||
190 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
191 | 3c71b3a5 | taeseongkim | <PropertyGroup> |
192 | <PostBuildEvent>$(ProjectDir)\deploy.bat $(ProjectDir) $(TargetDir) $(Platform)</PostBuildEvent> |
||
193 | </PropertyGroup> |
||
194 | c4a4d59c | ljiyeon | </Project> |