프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / SmartUpdate / SmartUpdate.csproj @ f9d42594

이력 | 보기 | 이력해설 | 다운로드 (6.66 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
    <OutputPath>..\KCOM\bin\x64\Debug\</OutputPath>
40
    <DefineConstants>DEBUG;TRACE</DefineConstants>
41
    <ErrorReport>prompt</ErrorReport>
42
    <WarningLevel>4</WarningLevel>
43
  </PropertyGroup>
44
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45
    <PlatformTarget>AnyCPU</PlatformTarget>
46
    <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 c4a4d59c ljiyeon
  <ItemGroup>
66
    <Reference Include="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
67
      <HintPath>..\packages\ICSharpCode.SharpZipLib.dll.0.85.4.369\lib\net20\ICSharpCode.SharpZipLib.dll</HintPath>
68
    </Reference>
69
    <Reference Include="System" />
70
    <Reference Include="System.Data" />
71
    <Reference Include="System.Drawing" />
72
    <Reference Include="System.Xml" />
73
    <Reference Include="Microsoft.CSharp" />
74
    <Reference Include="System.Core" />
75
    <Reference Include="System.Xml.Linq" />
76
    <Reference Include="System.Data.DataSetExtensions" />
77
    <Reference Include="System.Xaml">
78
      <RequiredTargetFramework>4.0</RequiredTargetFramework>
79
    </Reference>
80
    <Reference Include="Telerik.Windows.Data, Version=2018.1.122.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL">
81
      <SpecificVersion>False</SpecificVersion>
82
      <HintPath>..\KCOM\bin\x64\Debug\Telerik.Windows.Data.dll</HintPath>
83
    </Reference>
84
    <Reference Include="WindowsBase" />
85
    <Reference Include="PresentationCore" />
86
    <Reference Include="PresentationFramework" />
87
  </ItemGroup>
88
  <ItemGroup>
89
    <ApplicationDefinition Include="App.xaml">
90
      <Generator>MSBuild:Compile</Generator>
91
      <SubType>Designer</SubType>
92
    </ApplicationDefinition>
93
    <Page Include="MainWindow.xaml">
94
      <Generator>MSBuild:Compile</Generator>
95
      <SubType>Designer</SubType>
96
    </Page>
97
    <Compile Include="App.xaml.cs">
98
      <DependentUpon>App.xaml</DependentUpon>
99
      <SubType>Code</SubType>
100
    </Compile>
101
    <Compile Include="FileToImageIconConverter.cs" />
102
    <Compile Include="IconManager.cs" />
103
    <Compile Include="IconHelper.cs" />
104
    <Compile Include="IntSecurity.cs" />
105
    <Compile Include="MainWindow.xaml.cs">
106
      <DependentUpon>MainWindow.xaml</DependentUpon>
107
      <SubType>Code</SubType>
108
    </Compile>
109
  </ItemGroup>
110
  <ItemGroup>
111
    <Compile Include="Properties\AssemblyInfo.cs">
112
      <SubType>Code</SubType>
113
    </Compile>
114
    <Compile Include="Properties\Resources.Designer.cs">
115
      <AutoGen>True</AutoGen>
116
      <DesignTime>True</DesignTime>
117
      <DependentUpon>Resources.resx</DependentUpon>
118
    </Compile>
119
    <Compile Include="Properties\Settings.Designer.cs">
120
      <AutoGen>True</AutoGen>
121
      <DependentUpon>Settings.settings</DependentUpon>
122
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
123
    </Compile>
124
    <EmbeddedResource Include="Properties\Resources.resx">
125
      <Generator>ResXFileCodeGenerator</Generator>
126
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
127
    </EmbeddedResource>
128
    <None Include="packages.config" />
129 f9d42594 djkim
    <None Include="Properties\app.manifest" />
130 c4a4d59c ljiyeon
    <None Include="Properties\Settings.settings">
131
      <Generator>SettingsSingleFileGenerator</Generator>
132
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
133
    </None>
134
  </ItemGroup>
135
  <ItemGroup>
136
    <None Include="App.config" />
137
  </ItemGroup>
138
  <ItemGroup>
139
    <Resource Include="SmartUpdate.ico" />
140
  </ItemGroup>
141
  <ItemGroup>
142
    <BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
143
      <Visible>False</Visible>
144
      <ProductName>Microsoft .NET Framework 4.6.1%28x86 및 x64%29</ProductName>
145
      <Install>true</Install>
146
    </BootstrapperPackage>
147
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
148
      <Visible>False</Visible>
149
      <ProductName>.NET Framework 3.5 SP1</ProductName>
150
      <Install>false</Install>
151
    </BootstrapperPackage>
152
  </ItemGroup>
153
  <ItemGroup>
154
    <Resource Include="Resources\close-window.png" />
155
    <Resource Include="Resources\maximize-window.png" />
156
    <Resource Include="Resources\minimize-window.png" />
157
  </ItemGroup>
158
  <ItemGroup>
159
    <Resource Include="Resources\UpdateImg.png" />
160
  </ItemGroup>
161
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
162
</Project>
클립보드 이미지 추가 (최대 크기: 500 MB)