hytos / ID2.Manager / ID2.Manager.Dapper / ID2.Manager.Dapper.csproj @ db490bdf
이력 | 보기 | 이력해설 | 다운로드 (4.29 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>{6D22AAA8-D584-43F4-B71C-B32C5C9288ED}</ProjectGuid> |
||
9 | <OutputType>Library</OutputType> |
||
10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
11 | <RootNamespace>ID2.Manager.Dapper</RootNamespace> |
||
12 | <AssemblyName>ID2.Manager.Dapper</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 | 8164f84e | yoush97 | <Reference Include="System.ComponentModel.DataAnnotations" /> |
55 | b9a7af31 | yoush97 | <Reference Include="System.Core" /> |
56 | <Reference Include="System.Xml.Linq" /> |
||
57 | <Reference Include="System.Data.DataSetExtensions" /> |
||
58 | <Reference Include="Microsoft.CSharp" /> |
||
59 | <Reference Include="System.Data" /> |
||
60 | <Reference Include="System.Net.Http" /> |
||
61 | <Reference Include="System.Xml" /> |
||
62 | </ItemGroup> |
||
63 | <ItemGroup> |
||
64 | fdecb3be | yoush97 | <Compile Include="DatabaseEnums.cs" /> |
65 | d1d8c5ea | taeseongkim | <Compile Include="Entities\ConvertDoc.cs" /> |
66 | 1a88080d | taeseongkim | <Compile Include="Entities\DocPage.cs" /> |
67 | <Compile Include="Entities\DOCUMENTITEM.cs" /> |
||
68 | 5b086e44 | taeseongkim | <Compile Include="Entities\MEMBER.cs" /> |
69 | 8164f84e | yoush97 | <Compile Include="IBaseRepository.cs" /> |
70 | b9a7af31 | yoush97 | <Compile Include="Properties\AssemblyInfo.cs" /> |
71 | 37b10cc3 | yoush97 | <Compile Include="Repository\AttFileRepository.cs" /> |
72 | 8164f84e | yoush97 | <Compile Include="Repository\BaseRepository.cs" /> |
73 | 5898479a | yoush97 | <Compile Include="Repository\DocumentRepository.cs" /> |
74 | 8eca8767 | taeseongkim | <Compile Include="Repository\ExcelDataRepository.cs" /> |
75 | be2dacfc | yoush97 | <Compile Include="Repository\ID2Repository.cs" /> |
76 | 1a88080d | taeseongkim | <Compile Include="Repository\MarkusRepository.cs" /> |
77 | cab8a4a1 | yoush97 | <Compile Include="Repository\ProjectRepository.cs" /> |
78 | 8164f84e | yoush97 | <Compile Include="Repository\UserRepository.cs" /> |
79 | b9a7af31 | yoush97 | </ItemGroup> |
80 | 8164f84e | yoush97 | <ItemGroup /> |
81 | b9a7af31 | yoush97 | <ItemGroup> |
82 | <PackageReference Include="Dapper"> |
||
83 | <Version>2.0.90</Version> |
||
84 | </PackageReference> |
||
85 | 1a88080d | taeseongkim | <PackageReference Include="Dapper.ParameterExtensions"> |
86 | <Version>2022.7.7.1</Version> |
||
87 | </PackageReference> |
||
88 | b9a7af31 | yoush97 | <PackageReference Include="Newtonsoft.Json"> |
89 | <Version>13.0.3</Version> |
||
90 | </PackageReference> |
||
91 | bbc1808c | yoush97 | <PackageReference Include="System.Data.SQLite"> |
92 | 4a7e4492 | taeseongkim | <Version>1.0.118</Version> |
93 | bbc1808c | yoush97 | </PackageReference> |
94 | b9a7af31 | yoush97 | </ItemGroup> |
95 | 8164f84e | yoush97 | <ItemGroup> |
96 | <ProjectReference Include="..\ID2.Manager.Data\ID2.Manager.Data.csproj"> |
||
97 | <Project>{b17c0800-40f4-40e2-b5a6-d366d9c2e0f6}</Project> |
||
98 | <Name>ID2.Manager.Data</Name> |
||
99 | </ProjectReference> |
||
100 | </ItemGroup> |
||
101 | b9a7af31 | yoush97 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
102 | </Project> |