markus / CommonLib / CommonLib.csproj @ 3a52c0a7
이력 | 보기 | 이력해설 | 다운로드 (2.98 KB)
1 | de4c7a4a | djkim | <?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>{DEF47FC2-B898-4C92-AD8D-D7B9E994495E}</ProjectGuid> |
||
8 | <OutputType>Library</OutputType> |
||
9 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
10 | <RootNamespace>CommonLib</RootNamespace> |
||
11 | <AssemblyName>CommonLib</AssemblyName> |
||
12 | d4a60930 | djkim | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
13 | de4c7a4a | djkim | <FileAlignment>512</FileAlignment> |
14 | <Deterministic>true</Deterministic> |
||
15 | d4a60930 | djkim | <TargetFrameworkProfile /> |
16 | de4c7a4a | djkim | </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 | f19ebe30 | djkim | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> |
35 | <DebugSymbols>true</DebugSymbols> |
||
36 | <OutputPath>bin\x86\Debug\</OutputPath> |
||
37 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
38 | <DebugType>full</DebugType> |
||
39 | <PlatformTarget>x86</PlatformTarget> |
||
40 | <ErrorReport>prompt</ErrorReport> |
||
41 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
42 | </PropertyGroup> |
||
43 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
||
44 | <OutputPath>bin\x86\Release\</OutputPath> |
||
45 | <DefineConstants>TRACE</DefineConstants> |
||
46 | <Optimize>true</Optimize> |
||
47 | <DebugType>pdbonly</DebugType> |
||
48 | <PlatformTarget>x86</PlatformTarget> |
||
49 | <ErrorReport>prompt</ErrorReport> |
||
50 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
51 | </PropertyGroup> |
||
52 | de4c7a4a | djkim | <ItemGroup> |
53 | <Reference Include="System" /> |
||
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 | <Compile Include="Common.cs" /> |
||
64 | eb5cdefc | djkim | <Compile Include="DNSHelper.cs" /> |
65 | de4c7a4a | djkim | <Compile Include="Properties\AssemblyInfo.cs" /> |
66 | </ItemGroup> |
||
67 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
68 | </Project> |