프로젝트

일반

사용자정보

통계
| 개정판:

hytos / ID2.Manager / ExcelAddin / ID2ManagerImport / ID2ManagerImport.csproj @ 753a1c26

이력 | 보기 | 이력해설 | 다운로드 (11.4 KB)

1
<Project ToolsVersion="16.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
3
  <!--
4
    This section defines project-level properties.
5

    
6
    AssemblyName
7
      Name of the output assembly.
8
    Configuration
9
      Specifies a default value for debug.
10
    OutputType
11
      Must be "Library" for VSTO.
12
    Platform
13
      Specifies what CPU the output of this project can run on.
14
    NoStandardLibraries
15
      Set to "false" for VSTO.
16
    RootNamespace
17
      In C#, this specifies the namespace given to new files. In VB, all objects are
18
      wrapped in this namespace at runtime.
19
  -->
20
  <PropertyGroup>
21
    <ProjectTypeGuids>{BAA0C2D2-18E2-41B9-852F-F413020CAA33};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
22
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
23
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
24
    <ProjectGuid>{3477906E-C120-4FA6-B73D-93791283378A}</ProjectGuid>
25
    <OutputType>Library</OutputType>
26
    <NoStandardLibraries>false</NoStandardLibraries>
27
    <RootNamespace>ID2ManagerImport</RootNamespace>
28
    <AssemblyName>ID2ManagerImport</AssemblyName>
29
    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
30
    <DefineConstants>VSTO40</DefineConstants>
31
    <IsWebBootstrapper>False</IsWebBootstrapper>
32
    <BootstrapperEnabled>true</BootstrapperEnabled>
33
    <PublishUrl>게시\</PublishUrl>
34
    <InstallUrl />
35
    <TargetCulture>ko</TargetCulture>
36
    <ApplicationVersion>1.7.0.1</ApplicationVersion>
37
    <AutoIncrementApplicationRevision>true</AutoIncrementApplicationRevision>
38
    <UpdateEnabled>false</UpdateEnabled>
39
    <UpdateInterval>0</UpdateInterval>
40
    <UpdateIntervalUnits>days</UpdateIntervalUnits>
41
    <ProductName>ID2ManagerImport</ProductName>
42
    <PublisherName />
43
    <SupportUrl />
44
    <FriendlyName>ID2ManagerImport</FriendlyName>
45
    <OfficeApplicationDescription />
46
    <LoadBehavior>3</LoadBehavior>
47
  </PropertyGroup>
48
  <ItemGroup>
49
    <BootstrapperPackage Include=".NETFramework,Version=v4.8">
50
      <Visible>False</Visible>
51
      <ProductName>Microsoft .NET Framework 4.8%28x86 및 x64%29</ProductName>
52
      <Install>true</Install>
53
    </BootstrapperPackage>
54
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
55
      <Visible>False</Visible>
56
      <ProductName>.NET Framework 3.5 SP1</ProductName>
57
      <Install>false</Install>
58
    </BootstrapperPackage>
59
    <BootstrapperPackage Include="Microsoft.VSTORuntime.4.0">
60
      <Visible>False</Visible>
61
      <ProductName>Microsoft Visual Studio 2010 Tools for Office Runtime%28x86 및 x64%29</ProductName>
62
      <Install>true</Install>
63
    </BootstrapperPackage>
64
  </ItemGroup>
65
  <PropertyGroup>
66
    <!--
67
      OfficeApplication
68
        Add-in host application
69
    -->
70
    <OfficeApplication>Excel</OfficeApplication>
71
  </PropertyGroup>
72
  <!--
73
    This section defines properties that are set when the "Debug" configuration is selected.
74

    
75
    DebugSymbols
76
      If "true", create symbols (.pdb). If "false", do not create symbols.
77
    DefineConstants
78
      Constants defined for the preprocessor.
79
    EnableUnmanagedDebugging
80
      If "true", starting the debugger will attach both managed and unmanaged debuggers.
81
    Optimize
82
      If "true", optimize the build output. If "false", do not optimize.
83
    OutputPath
84
      Output path of project relative to the project file.
85
    WarningLevel
86
      Warning level for the compiler.
87
  -->
88
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
89
    <DebugSymbols>true</DebugSymbols>
90
    <DebugType>full</DebugType>
91
    <Optimize>false</Optimize>
92
    <OutputPath>bin\Debug\</OutputPath>
93
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
94
    <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
95
    <WarningLevel>4</WarningLevel>
96
    <PlatformTarget>x64</PlatformTarget>
97
  </PropertyGroup>
98
  <!--
99
    This section defines properties that are set when the "Release" configuration is selected.
100

    
101
    DebugSymbols
102
      If "true", create symbols (.pdb). If "false", do not create symbols.
103
    DefineConstants
104
      Constants defined for the preprocessor.
105
    EnableUnmanagedDebugging
106
      If "true", starting the debugger will attach both managed and unmanaged debuggers.
107
    Optimize
108
      If "true", optimize the build output. If "false", do not optimize.
109
    OutputPath
110
      Output path of project relative to the project file.
111
    WarningLevel
112
      Warning level for the compiler.
113
  -->
114
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
115
    <DebugType>pdbonly</DebugType>
116
    <Optimize>true</Optimize>
117
    <OutputPath>bin\Release\</OutputPath>
118
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
119
    <DefineConstants>$(DefineConstants);TRACE</DefineConstants>
120
    <WarningLevel>4</WarningLevel>
121
  </PropertyGroup>
122
  <!--
123
    This section specifies references for the project.
124
  -->
125
  <ItemGroup>
126
    <Reference Include="Accessibility" />
127
    <Reference Include="System" />
128
    <Reference Include="System.Data" />
129
    <Reference Include="System.Drawing" />
130
    <Reference Include="System.Windows.Forms" />
131
    <Reference Include="System.Xml" />
132
    <Reference Include="System.Core" />
133
    <Reference Include="System.Xml.Linq" />
134
    <Reference Include="System.Data.DataSetExtensions" />
135
    <Reference Include="Microsoft.CSharp" />
136
  </ItemGroup>
137
  <ItemGroup>
138
    <Reference Include="Microsoft.Office.Tools.v4.0.Framework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
139
      <Private>False</Private>
140
    </Reference>
141
    <Reference Include="Microsoft.VisualStudio.Tools.Applications.Runtime, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
142
      <Private>False</Private>
143
    </Reference>
144
    <Reference Include="Microsoft.Office.Tools, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
145
      <Private>False</Private>
146
    </Reference>
147
    <Reference Include="Microsoft.Office.Tools.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
148
      <Private>False</Private>
149
    </Reference>
150
    <Reference Include="Microsoft.Office.Tools.Excel, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
151
      <Private>False</Private>
152
    </Reference>
153
  </ItemGroup>
154
  <ItemGroup>
155
    <Reference Include="Microsoft.Office.Tools.Common.v4.0.Utilities, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
156
      <Private>True</Private>
157
    </Reference>
158
  </ItemGroup>
159
  <ItemGroup>
160
    <Reference Include="Office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
161
      <Private>False</Private>
162
      <EmbedInteropTypes>true</EmbedInteropTypes>
163
    </Reference>
164
    <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
165
      <Private>False</Private>
166
      <EmbedInteropTypes>true</EmbedInteropTypes>
167
    </Reference>
168
    <Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
169
      <Private>False</Private>
170
    </Reference>
171
  </ItemGroup>
172
  <!--
173
    This section defines the user source files that are part of the project.
174
     
175
    A "Compile" element specifies a source file to compile.
176
    An "EmbeddedResource" element specifies an .resx file for embedded resources.
177
    A "None" element specifies a file that is not to be passed to the compiler (for instance, 
178
    a text file or XML file).
179
    The "AppDesigner" element specifies the directory where the application properties files
180
    can be found.
181
  -->
182
  <ItemGroup>
183
    <Compile Include="DataImport.cs" />
184
    <Compile Include="ID2Ribbon.cs">
185
      <SubType>Component</SubType>
186
    </Compile>
187
    <Compile Include="ID2Ribbon.Designer.cs">
188
      <DependentUpon>ID2Ribbon.cs</DependentUpon>
189
    </Compile>
190
    <Compile Include="Properties\AssemblyInfo.cs">
191
      <SubType>Code</SubType>
192
    </Compile>
193
    <EmbeddedResource Include="ID2Ribbon.resx">
194
      <DependentUpon>ID2Ribbon.cs</DependentUpon>
195
    </EmbeddedResource>
196
    <EmbeddedResource Include="Properties\Resources.resx">
197
      <Generator>ResXFileCodeGenerator</Generator>
198
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
199
      <SubType>Designer</SubType>
200
    </EmbeddedResource>
201
    <Compile Include="Properties\Resources.Designer.cs">
202
      <AutoGen>True</AutoGen>
203
      <DependentUpon>Resources.resx</DependentUpon>
204
    </Compile>
205
    <None Include="ID2ManagerImport_TemporaryKey.pfx" />
206
    <None Include="Properties\Settings.settings">
207
      <Generator>SettingsSingleFileGenerator</Generator>
208
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
209
    </None>
210
    <Compile Include="Properties\Settings.Designer.cs">
211
      <AutoGen>True</AutoGen>
212
      <DependentUpon>Settings.settings</DependentUpon>
213
    </Compile>
214
    <Compile Include="ThisAddIn.cs">
215
      <SubType>Code</SubType>
216
    </Compile>
217
    <None Include="ThisAddIn.Designer.xml">
218
      <DependentUpon>ThisAddIn.cs</DependentUpon>
219
    </None>
220
    <Compile Include="ThisAddIn.Designer.cs">
221
      <DependentUpon>ThisAddIn.Designer.xml</DependentUpon>
222
    </Compile>
223
    <AppDesigner Include="Properties\" />
224
    <None Include="www.doftech.co.kr.pfx" />
225
  </ItemGroup>
226
  <ItemGroup>
227
    <PackageReference Include="MsSQLDialog">
228
      <Version>1.0.0</Version>
229
    </PackageReference>
230
  </ItemGroup>
231
  <PropertyGroup>
232
    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
233
    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
234
  </PropertyGroup>
235
  <PropertyGroup>
236
    <SignManifests>true</SignManifests>
237
  </PropertyGroup>
238
  <PropertyGroup>
239
    <ManifestKeyFile>www.doftech.co.kr.pfx</ManifestKeyFile>
240
  </PropertyGroup>
241
  <PropertyGroup>
242
    <ManifestCertificateThumbprint>D711C6148F2B1BBF5D285ABCE362BCEE04A004C4</ManifestCertificateThumbprint>
243
  </PropertyGroup>
244
  <!-- Include the build rules for a C# project. -->
245
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
246
  <!-- Include additional build rules for an Office application add-in. -->
247
  <Import Project="$(VSToolsPath)\OfficeTools\Microsoft.VisualStudio.Tools.Office.targets" Condition="'$(VSToolsPath)' != ''" />
248
  <!-- This section defines VSTO properties that describe the host-changeable project properties. -->
249
  <ProjectExtensions>
250
    <VisualStudio>
251
      <FlavorProperties GUID="{BAA0C2D2-18E2-41B9-852F-F413020CAA33}">
252
        <ProjectProperties HostName="Excel" HostPackage="{29A7B9D7-A7F1-4328-8EF0-6B2D1A56B2C1}" OfficeVersion="15.0" VstxVersion="4.0" ApplicationType="Excel" Language="cs" TemplatesPath="" DebugInfoExeName="#Software\Microsoft\Office\16.0\Excel\InstallRoot\Path#excel.exe" DebugInfoCommandLine="/x" AddItemTemplatesGuid="{51063C3A-E220-4D12-8922-BDA915ACD783}" />
253
        <Host Name="Excel" GeneratedCodeNamespace="ID2ManagerImport" PublishedHash="69C324AB27932AA2FBF2B7EA72250886FF164DE6" IconIndex="0">
254
          <HostItem Name="ThisAddIn" Code="ThisAddIn.cs" CanonicalName="AddIn" PublishedHash="82537F06F54D5DD73334C8FD08F4F6A9937971E0" CanActivate="false" IconIndex="1" Blueprint="ThisAddIn.Designer.xml" GeneratedCode="ThisAddIn.Designer.cs" />
255
        </Host>
256
      </FlavorProperties>
257
    </VisualStudio>
258
  </ProjectExtensions>
259
</Project>
클립보드 이미지 추가 (최대 크기: 500 MB)