hytos / ID2.Manager / ID2.Manager.Common / ID2.Manager.Common.csproj @ 4b9f349c
이력 | 보기 | 이력해설 | 다운로드 (3.93 KB)
1 | b9a7af31 | yoush97 | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | 482a6da0 | taeseongkim | <!--nuget add--> |
3 | b9a7af31 | yoush97 | <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
4 | <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> |
||
5 | <PropertyGroup> |
||
6 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||
7 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
||
8 | <ProjectGuid>{D5ABDF40-CA97-4B5A-A08C-63D7D53BCA3A}</ProjectGuid> |
||
9 | <OutputType>Library</OutputType> |
||
10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
11 | <RootNamespace>ID2.Manager.Common</RootNamespace> |
||
12 | <AssemblyName>ID2.Manager.Common</AssemblyName> |
||
13 | <TargetFrameworkVersion>v4.8</TargetFrameworkVersion> |
||
14 | <FileAlignment>512</FileAlignment> |
||
15 | <Deterministic>true</Deterministic> |
||
16 | </PropertyGroup> |
||
17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
18 | <DebugSymbols>true</DebugSymbols> |
||
19 | <DebugType>full</DebugType> |
||
20 | <Optimize>false</Optimize> |
||
21 | <OutputPath>bin\Debug\</OutputPath> |
||
22 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
23 | <ErrorReport>prompt</ErrorReport> |
||
24 | <WarningLevel>4</WarningLevel> |
||
25 | </PropertyGroup> |
||
26 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
27 | <DebugType>pdbonly</DebugType> |
||
28 | <Optimize>true</Optimize> |
||
29 | <OutputPath>bin\Release\</OutputPath> |
||
30 | <DefineConstants>TRACE</DefineConstants> |
||
31 | <ErrorReport>prompt</ErrorReport> |
||
32 | <WarningLevel>4</WarningLevel> |
||
33 | </PropertyGroup> |
||
34 | 73a686e6 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
35 | <DebugSymbols>true</DebugSymbols> |
||
36 | <OutputPath>bin\x64\Debug\</OutputPath> |
||
37 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
38 | <DebugType>full</DebugType> |
||
39 | <PlatformTarget>x64</PlatformTarget> |
||
40 | <LangVersion>7.3</LangVersion> |
||
41 | <ErrorReport>prompt</ErrorReport> |
||
42 | </PropertyGroup> |
||
43 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
44 | <OutputPath>bin\x64\Release\</OutputPath> |
||
45 | <DefineConstants>TRACE</DefineConstants> |
||
46 | <Optimize>true</Optimize> |
||
47 | <DebugType>pdbonly</DebugType> |
||
48 | <PlatformTarget>x64</PlatformTarget> |
||
49 | <LangVersion>7.3</LangVersion> |
||
50 | <ErrorReport>prompt</ErrorReport> |
||
51 | </PropertyGroup> |
||
52 | b9a7af31 | yoush97 | <ItemGroup> |
53 | <Reference Include="System" /> |
||
54 | b6abb7b8 | yoush97 | <Reference Include="System.Configuration" /> |
55 | b9a7af31 | yoush97 | <Reference Include="System.Core" /> |
56 | 8d292359 | taeseongkim | <Reference Include="System.Drawing" /> |
57 | <Reference Include="System.Windows.Forms" /> |
||
58 | b9a7af31 | yoush97 | <Reference Include="System.Xml.Linq" /> |
59 | <Reference Include="System.Data.DataSetExtensions" /> |
||
60 | <Reference Include="Microsoft.CSharp" /> |
||
61 | <Reference Include="System.Data" /> |
||
62 | <Reference Include="System.Net.Http" /> |
||
63 | <Reference Include="System.Xml" /> |
||
64 | </ItemGroup> |
||
65 | <ItemGroup> |
||
66 | 35d01ef5 | yoush97 | <Compile Include="Globals.cs" /> |
67 | 43ceb5b3 | taeseongkim | <Compile Include="Helpers\CompressHelper.cs" /> |
68 | 057ca09a | taeseongkim | <Compile Include="Helpers\GemboxHelper.cs" /> |
69 | <Compile Include="Helpers\ID2Excel.cs" /> |
||
70 | <Compile Include="Helpers\ImportResult.cs" /> |
||
71 | 8eca8767 | taeseongkim | <Compile Include="Helpers\StringHelper.cs" /> |
72 | 8d7ea9de | taeseongkim | <Compile Include="Helpers\TableLayoutPanelHelper.cs" /> |
73 | 35d01ef5 | yoush97 | <Compile Include="Informations.cs" /> |
74 | b9a7af31 | yoush97 | <Compile Include="Properties\AssemblyInfo.cs" /> |
75 | </ItemGroup> |
||
76 | 057ca09a | taeseongkim | <ItemGroup /> |
77 | b9a7af31 | yoush97 | <ItemGroup> |
78 | 057ca09a | taeseongkim | <PackageReference Include="GemBox.Spreadsheet"> |
79 | <Version>47.0.1268</Version> |
||
80 | </PackageReference> |
||
81 | b9a7af31 | yoush97 | <PackageReference Include="Newtonsoft.Json"> |
82 | <Version>13.0.3</Version> |
||
83 | </PackageReference> |
||
84 | 8d292359 | taeseongkim | <PackageReference Include="UI.for.WinForms.Common"> |
85 | <Version>2023.1.314</Version> |
||
86 | </PackageReference> |
||
87 | b9a7af31 | yoush97 | </ItemGroup> |
88 | 35d01ef5 | yoush97 | <ItemGroup> |
89 | <ProjectReference Include="..\ID2.Manager.Data\ID2.Manager.Data.csproj"> |
||
90 | <Project>{b17c0800-40f4-40e2-b5a6-d366d9c2e0f6}</Project> |
||
91 | <Name>ID2.Manager.Data</Name> |
||
92 | </ProjectReference> |
||
93 | </ItemGroup> |
||
94 | b9a7af31 | yoush97 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
95 | </Project> |