1
|
<?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>{BEEC4A21-BD63-40D2-B745-027B19241A70}</ProjectGuid>
|
8
|
<OutputType>Library</OutputType>
|
9
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
10
|
<RootNamespace>Converter.BaseModel</RootNamespace>
|
11
|
<AssemblyName>BaseModel</AssemblyName>
|
12
|
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
13
|
<FileAlignment>512</FileAlignment>
|
14
|
<Deterministic>true</Deterministic>
|
15
|
<NuGetPackageImportStamp>
|
16
|
</NuGetPackageImportStamp>
|
17
|
</PropertyGroup>
|
18
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
19
|
<DebugSymbols>true</DebugSymbols>
|
20
|
<DebugType>full</DebugType>
|
21
|
<Optimize>false</Optimize>
|
22
|
<OutputPath>bin\Debug\</OutputPath>
|
23
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
24
|
<ErrorReport>prompt</ErrorReport>
|
25
|
<WarningLevel>4</WarningLevel>
|
26
|
</PropertyGroup>
|
27
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
28
|
<DebugType>pdbonly</DebugType>
|
29
|
<Optimize>true</Optimize>
|
30
|
<OutputPath>bin\Release\</OutputPath>
|
31
|
<DefineConstants>TRACE</DefineConstants>
|
32
|
<ErrorReport>prompt</ErrorReport>
|
33
|
<WarningLevel>4</WarningLevel>
|
34
|
</PropertyGroup>
|
35
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
36
|
<DebugSymbols>true</DebugSymbols>
|
37
|
<OutputPath>..\SPPIDConverterDll\</OutputPath>
|
38
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
39
|
<DebugType>full</DebugType>
|
40
|
<PlatformTarget>x86</PlatformTarget>
|
41
|
<ErrorReport>prompt</ErrorReport>
|
42
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
43
|
</PropertyGroup>
|
44
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
45
|
<OutputPath>bin\x86\Release\</OutputPath>
|
46
|
<DefineConstants>TRACE</DefineConstants>
|
47
|
<Optimize>true</Optimize>
|
48
|
<DebugType>pdbonly</DebugType>
|
49
|
<PlatformTarget>x86</PlatformTarget>
|
50
|
<ErrorReport>prompt</ErrorReport>
|
51
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
52
|
</PropertyGroup>
|
53
|
<ItemGroup>
|
54
|
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
55
|
<HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
|
56
|
</Reference>
|
57
|
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
58
|
<HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
59
|
</Reference>
|
60
|
<Reference Include="System" />
|
61
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
62
|
<Reference Include="System.Core" />
|
63
|
<Reference Include="System.Data.SQLite, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
|
64
|
<HintPath>..\packages\System.Data.SQLite.Core.1.0.110.0\lib\net46\System.Data.SQLite.dll</HintPath>
|
65
|
</Reference>
|
66
|
<Reference Include="System.Data.SQLite.EF6, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
|
67
|
<HintPath>..\packages\System.Data.SQLite.EF6.1.0.110.0\lib\net46\System.Data.SQLite.EF6.dll</HintPath>
|
68
|
</Reference>
|
69
|
<Reference Include="System.Data.SQLite.Linq, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
|
70
|
<HintPath>..\packages\System.Data.SQLite.Linq.1.0.110.0\lib\net46\System.Data.SQLite.Linq.dll</HintPath>
|
71
|
</Reference>
|
72
|
<Reference Include="System.Windows.Forms" />
|
73
|
<Reference Include="System.Xml.Linq" />
|
74
|
<Reference Include="System.Data.DataSetExtensions" />
|
75
|
<Reference Include="Microsoft.CSharp" />
|
76
|
<Reference Include="System.Data" />
|
77
|
<Reference Include="System.Net.Http" />
|
78
|
<Reference Include="System.Xml" />
|
79
|
</ItemGroup>
|
80
|
<ItemGroup>
|
81
|
<Compile Include="Model\Base.cs" />
|
82
|
<Compile Include="Model\Other\Association.cs" />
|
83
|
<Compile Include="Model\Other\Attribute.cs" />
|
84
|
<Compile Include="Model\Other\Connector.cs" />
|
85
|
<Compile Include="Model\Other\LineNumberRun.cs" />
|
86
|
<Compile Include="Model\Other\Property.cs" />
|
87
|
<Compile Include="Project_DB.cs" />
|
88
|
<Compile Include="Project_Info.cs" />
|
89
|
<Compile Include="Model\Document.cs" />
|
90
|
<Compile Include="Model\Line.cs" />
|
91
|
<Compile Include="Model\LineNumber.cs" />
|
92
|
<Compile Include="Model\Note.cs" />
|
93
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
94
|
<Compile Include="Model\Symbol.cs" />
|
95
|
<Compile Include="Model\Text.cs" />
|
96
|
</ItemGroup>
|
97
|
<ItemGroup>
|
98
|
<None Include="App.config" />
|
99
|
<None Include="packages.config" />
|
100
|
</ItemGroup>
|
101
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
102
|
<Import Project="..\packages\System.Data.SQLite.Core.1.0.110.0\build\net46\System.Data.SQLite.Core.targets" Condition="Exists('..\packages\System.Data.SQLite.Core.1.0.110.0\build\net46\System.Data.SQLite.Core.targets')" />
|
103
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
104
|
<PropertyGroup>
|
105
|
<ErrorText>이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. 해당 패키지를 다운로드하려면 NuGet 패키지 복원을 사용하십시오. 자세한 내용은 http://go.microsoft.com/fwlink/?LinkID=322105를 참조하십시오. 누락된 파일은 {0}입니다.</ErrorText>
|
106
|
</PropertyGroup>
|
107
|
<Error Condition="!Exists('..\packages\System.Data.SQLite.Core.1.0.110.0\build\net46\System.Data.SQLite.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.Data.SQLite.Core.1.0.110.0\build\net46\System.Data.SQLite.Core.targets'))" />
|
108
|
</Target>
|
109
|
</Project>
|