hytos / ID2.Manager / ID2.Manager.Controller / ID2.Manager.Controller.csproj @ edded054
이력 | 보기 | 이력해설 | 다운로드 (4.08 KB)
1 | 8164f84e | yoush97 | <?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>{83DACC10-43B1-4E38-ABEF-E5EF9492A82D}</ProjectGuid> |
||
8 | <OutputType>Library</OutputType> |
||
9 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
10 | <RootNamespace>ID2.Manager.Controller</RootNamespace> |
||
11 | <AssemblyName>ID2.Manager.Controller</AssemblyName> |
||
12 | <TargetFrameworkVersion>v4.8</TargetFrameworkVersion> |
||
13 | <FileAlignment>512</FileAlignment> |
||
14 | <Deterministic>true</Deterministic> |
||
15 | </PropertyGroup> |
||
16 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
17 | <DebugSymbols>true</DebugSymbols> |
||
18 | <DebugType>full</DebugType> |
||
19 | <Optimize>false</Optimize> |
||
20 | <OutputPath>bin\Debug\</OutputPath> |
||
21 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
22 | <ErrorReport>prompt</ErrorReport> |
||
23 | <WarningLevel>4</WarningLevel> |
||
24 | </PropertyGroup> |
||
25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
26 | <DebugType>pdbonly</DebugType> |
||
27 | <Optimize>true</Optimize> |
||
28 | <OutputPath>bin\Release\</OutputPath> |
||
29 | <DefineConstants>TRACE</DefineConstants> |
||
30 | <ErrorReport>prompt</ErrorReport> |
||
31 | <WarningLevel>4</WarningLevel> |
||
32 | </PropertyGroup> |
||
33 | 73a686e6 | taeseongkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
34 | <DebugSymbols>true</DebugSymbols> |
||
35 | <OutputPath>bin\x64\Debug\</OutputPath> |
||
36 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
37 | <DebugType>full</DebugType> |
||
38 | <PlatformTarget>x64</PlatformTarget> |
||
39 | <LangVersion>7.3</LangVersion> |
||
40 | <ErrorReport>prompt</ErrorReport> |
||
41 | </PropertyGroup> |
||
42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
43 | <OutputPath>bin\x64\Release\</OutputPath> |
||
44 | <DefineConstants>TRACE</DefineConstants> |
||
45 | <Optimize>true</Optimize> |
||
46 | <DebugType>pdbonly</DebugType> |
||
47 | <PlatformTarget>x64</PlatformTarget> |
||
48 | <LangVersion>7.3</LangVersion> |
||
49 | <ErrorReport>prompt</ErrorReport> |
||
50 | </PropertyGroup> |
||
51 | 8164f84e | yoush97 | <ItemGroup> |
52 | <Reference Include="System" /> |
||
53 | <Reference Include="System.Configuration" /> |
||
54 | <Reference Include="System.Core" /> |
||
55 | <Reference Include="System.Xml.Linq" /> |
||
56 | <Reference Include="System.Data.DataSetExtensions" /> |
||
57 | <Reference Include="Microsoft.CSharp" /> |
||
58 | <Reference Include="System.Data" /> |
||
59 | <Reference Include="System.Net.Http" /> |
||
60 | <Reference Include="System.Xml" /> |
||
61 | </ItemGroup> |
||
62 | <ItemGroup> |
||
63 | 37b10cc3 | yoush97 | <Compile Include="Controllers\AttFileController.cs" /> |
64 | 8164f84e | yoush97 | <Compile Include="Controllers\BaseController.cs" /> |
65 | 5898479a | yoush97 | <Compile Include="Controllers\DocumentController.cs" /> |
66 | 8eca8767 | taeseongkim | <Compile Include="Controllers\ExcelDataController.cs" /> |
67 | be2dacfc | yoush97 | <Compile Include="Controllers\ID2Controller.cs" /> |
68 | c112c3c3 | taeseongkim | <Compile Include="Controllers\MarkusInfoController.cs" /> |
69 | cab8a4a1 | yoush97 | <Compile Include="Controllers\ProjectController.cs" /> |
70 | 8164f84e | yoush97 | <Compile Include="Controllers\UserController.cs" /> |
71 | <Compile Include="Properties\AssemblyInfo.cs" /> |
||
72 | </ItemGroup> |
||
73 | <ItemGroup> |
||
74 | b6abb7b8 | yoush97 | <ProjectReference Include="..\ID2.Manager.Common\ID2.Manager.Common.csproj"> |
75 | <Project>{d5abdf40-ca97-4b5a-a08c-63d7d53bca3a}</Project> |
||
76 | <Name>ID2.Manager.Common</Name> |
||
77 | </ProjectReference> |
||
78 | 8164f84e | yoush97 | <ProjectReference Include="..\ID2.Manager.Dapper\ID2.Manager.Dapper.csproj"> |
79 | <Project>{6d22aaa8-d584-43f4-b71c-b32c5c9288ed}</Project> |
||
80 | <Name>ID2.Manager.Dapper</Name> |
||
81 | </ProjectReference> |
||
82 | <ProjectReference Include="..\ID2.Manager.Data\ID2.Manager.Data.csproj"> |
||
83 | <Project>{b17c0800-40f4-40e2-b5a6-d366d9c2e0f6}</Project> |
||
84 | <Name>ID2.Manager.Data</Name> |
||
85 | </ProjectReference> |
||
86 | </ItemGroup> |
||
87 | c112c3c3 | taeseongkim | <ItemGroup> |
88 | <PackageReference Include="Newtonsoft.Json"> |
||
89 | <Version>13.0.3</Version> |
||
90 | </PackageReference> |
||
91 | </ItemGroup> |
||
92 | 8164f84e | yoush97 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
93 | </Project> |