markus / ConvertService / ServiceBase / Markus.Service.DataBase.Test / Markus.Service.DataBase.Test.csproj @ d85fc490
이력 | 보기 | 이력해설 | 다운로드 (5.46 KB)
1 | 731c84b8 | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <Project ToolsVersion="15.0" DefaultTargets="Build" 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>{A24E55D1-5834-4FF0-95D0-1486A6489812}</ProjectGuid> |
||
8 | <OutputType>Library</OutputType> |
||
9 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
10 | <RootNamespace>Markus.Service.DataBase.Test</RootNamespace> |
||
11 | <AssemblyName>Markus.Service.DataBase.Test</AssemblyName> |
||
12 | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
||
13 | <FileAlignment>512</FileAlignment> |
||
14 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
||
15 | <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion> |
||
16 | <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> |
||
17 | <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath> |
||
18 | <IsCodedUITest>False</IsCodedUITest> |
||
19 | <TestProjectType>UnitTest</TestProjectType> |
||
20 | <NuGetPackageImportStamp> |
||
21 | </NuGetPackageImportStamp> |
||
22 | </PropertyGroup> |
||
23 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
24 | <DebugSymbols>true</DebugSymbols> |
||
25 | <DebugType>full</DebugType> |
||
26 | <Optimize>false</Optimize> |
||
27 | <OutputPath>bin\Debug\</OutputPath> |
||
28 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
29 | <ErrorReport>prompt</ErrorReport> |
||
30 | <WarningLevel>4</WarningLevel> |
||
31 | <PlatformTarget>x64</PlatformTarget> |
||
32 | </PropertyGroup> |
||
33 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
34 | <DebugType>pdbonly</DebugType> |
||
35 | <Optimize>true</Optimize> |
||
36 | <OutputPath>bin\Release\</OutputPath> |
||
37 | <DefineConstants>TRACE</DefineConstants> |
||
38 | <ErrorReport>prompt</ErrorReport> |
||
39 | <WarningLevel>4</WarningLevel> |
||
40 | <PlatformTarget>x64</PlatformTarget> |
||
41 | </PropertyGroup> |
||
42 | 264f0f92 | GeunHo Song | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
43 | <DebugSymbols>true</DebugSymbols> |
||
44 | <OutputPath>bin\x64\Debug\</OutputPath> |
||
45 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
46 | <NoStdLib>true</NoStdLib> |
||
47 | <DebugType>full</DebugType> |
||
48 | <PlatformTarget>x64</PlatformTarget> |
||
49 | <ErrorReport>prompt</ErrorReport> |
||
50 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
51 | </PropertyGroup> |
||
52 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
||
53 | <OutputPath>bin\x64\Release\</OutputPath> |
||
54 | <DefineConstants>TRACE</DefineConstants> |
||
55 | <Optimize>true</Optimize> |
||
56 | <NoStdLib>true</NoStdLib> |
||
57 | <DebugType>pdbonly</DebugType> |
||
58 | <PlatformTarget>x64</PlatformTarget> |
||
59 | <ErrorReport>prompt</ErrorReport> |
||
60 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
61 | </PropertyGroup> |
||
62 | <PropertyGroup> |
||
63 | <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
||
64 | </PropertyGroup> |
||
65 | 731c84b8 | taeseongkim | <ItemGroup> |
66 | 264f0f92 | GeunHo Song | <Reference Include="Microsoft.VisualBasic" /> |
67 | 731c84b8 | taeseongkim | <Reference Include="System" /> |
68 | <Reference Include="System.Core" /> |
||
69 | <Reference Include="System.Data" /> |
||
70 | </ItemGroup> |
||
71 | <ItemGroup> |
||
72 | d85fc490 | GeunHo Song | <Compile Include="DataBaseProperties.cs" /> |
73 | <Compile Include="DataBasePropertiesPG.cs" /> |
||
74 | <Compile Include="DataBaseDocumentitem.cs" /> |
||
75 | 264f0f92 | GeunHo Song | <Compile Include="DataBaseDocInfo.cs" /> |
76 | d85fc490 | GeunHo Song | <Compile Include="DataBaseDocumentitemPG.cs" /> |
77 | 264f0f92 | GeunHo Song | <Compile Include="DataBaseDocInfoPG.cs" /> |
78 | <Compile Include="DataBaseDocPagePG.cs" /> |
||
79 | <Compile Include="DataBaseServiceproperties.cs" /> |
||
80 | <Compile Include="DataBaseServicepropertiesPG.cs" /> |
||
81 | 731c84b8 | taeseongkim | <Compile Include="DataBaseConvertDocPG.cs" /> |
82 | <Compile Include="DataBaseConvertDoc.cs" /> |
||
83 | <Compile Include="Properties\AssemblyInfo.cs" /> |
||
84 | <Compile Include="DataBaseDocPage.cs" /> |
||
85 | f6c94121 | taeseongkim | <Compile Include="TestBaseMSSQL.cs" /> |
86 | <Compile Include="TestBasePG.cs" /> |
||
87 | 731c84b8 | taeseongkim | </ItemGroup> |
88 | <ItemGroup> |
||
89 | <PackageReference Include="Microsoft.CSharp"> |
||
90 | <Version>4.7.0</Version> |
||
91 | </PackageReference> |
||
92 | <PackageReference Include="Microsoft.NET.Test.Sdk"> |
||
93 | <Version>17.0.0</Version> |
||
94 | </PackageReference> |
||
95 | <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461"> |
||
96 | <Version>1.0.2</Version> |
||
97 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||
98 | <PrivateAssets>all</PrivateAssets> |
||
99 | </PackageReference> |
||
100 | <PackageReference Include="NLog"> |
||
101 | <Version>1.0.2</Version> |
||
102 | </PackageReference> |
||
103 | <PackageReference Include="NUnit"> |
||
104 | <Version>3.13.3</Version> |
||
105 | </PackageReference> |
||
106 | <PackageReference Include="NUnit3TestAdapter"> |
||
107 | <Version>4.3.1</Version> |
||
108 | </PackageReference> |
||
109 | </ItemGroup> |
||
110 | 264f0f92 | GeunHo Song | <ItemGroup> |
111 | <ProjectReference Include="..\Markus.Service.DataBase.Dapper\Markus.Service.DataBase.Dapper.csproj"> |
||
112 | <Project>{f835dd07-7f0c-4dbd-a596-f3110d187421}</Project> |
||
113 | <Name>Markus.Service.DataBase.Dapper</Name> |
||
114 | </ProjectReference> |
||
115 | </ItemGroup> |
||
116 | 731c84b8 | taeseongkim | <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" /> |
117 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
118 | </Project> |