프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.StationConsole / Markus.Service.StationConsole.csproj @ 30d84e1a

이력 | 보기 | 이력해설 | 다운로드 (6.06 KB)

1 d91efe5c taeseongkim
<?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>{46A4728F-55CB-4141-A0F9-5D2199C4A55F}</ProjectGuid>
8
    <OutputType>Exe</OutputType>
9
    <RootNamespace>Markus.Service.StationConsole</RootNamespace>
10
    <AssemblyName>Markus.Service.StationConsole</AssemblyName>
11 a5e5fff6 taeseongkim
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12 d91efe5c taeseongkim
    <FileAlignment>512</FileAlignment>
13
    <Deterministic>true</Deterministic>
14
    <TargetFrameworkProfile />
15 a5e5fff6 taeseongkim
    <PublishUrl>게시\</PublishUrl>
16
    <Install>true</Install>
17
    <InstallFrom>Disk</InstallFrom>
18
    <UpdateEnabled>false</UpdateEnabled>
19
    <UpdateMode>Foreground</UpdateMode>
20
    <UpdateInterval>7</UpdateInterval>
21
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
22
    <UpdatePeriodically>false</UpdatePeriodically>
23
    <UpdateRequired>false</UpdateRequired>
24
    <MapFileExtensions>true</MapFileExtensions>
25
    <ApplicationRevision>0</ApplicationRevision>
26
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27
    <IsWebBootstrapper>false</IsWebBootstrapper>
28
    <UseApplicationTrust>false</UseApplicationTrust>
29
    <BootstrapperEnabled>true</BootstrapperEnabled>
30 d91efe5c taeseongkim
  </PropertyGroup>
31
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32
    <PlatformTarget>x64</PlatformTarget>
33
    <DebugSymbols>true</DebugSymbols>
34
    <DebugType>full</DebugType>
35
    <Optimize>false</Optimize>
36
    <OutputPath>bin\Debug\</OutputPath>
37
    <DefineConstants>DEBUG;TRACE</DefineConstants>
38
    <ErrorReport>prompt</ErrorReport>
39
    <WarningLevel>4</WarningLevel>
40
    <Prefer32Bit>false</Prefer32Bit>
41
  </PropertyGroup>
42
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43 43e1d368 taeseongkim
    <PlatformTarget>x64</PlatformTarget>
44 d91efe5c taeseongkim
    <DebugType>pdbonly</DebugType>
45
    <Optimize>true</Optimize>
46
    <OutputPath>bin\Release\</OutputPath>
47
    <DefineConstants>TRACE</DefineConstants>
48
    <ErrorReport>prompt</ErrorReport>
49
    <WarningLevel>4</WarningLevel>
50 43e1d368 taeseongkim
    <Prefer32Bit>false</Prefer32Bit>
51 d91efe5c taeseongkim
  </PropertyGroup>
52
  <PropertyGroup>
53
    <TargetZone>LocalIntranet</TargetZone>
54
  </PropertyGroup>
55
  <PropertyGroup>
56
    <GenerateManifests>false</GenerateManifests>
57
  </PropertyGroup>
58
  <PropertyGroup>
59
    <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
60
  </PropertyGroup>
61 43e1d368 taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
62
    <DebugSymbols>true</DebugSymbols>
63
    <OutputPath>bin\x64\Debug\</OutputPath>
64
    <DefineConstants>DEBUG;TRACE</DefineConstants>
65
    <DebugType>full</DebugType>
66
    <PlatformTarget>x64</PlatformTarget>
67
    <LangVersion>7.3</LangVersion>
68
    <ErrorReport>prompt</ErrorReport>
69
  </PropertyGroup>
70
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
71
    <OutputPath>bin\x64\Release\</OutputPath>
72
    <DefineConstants>TRACE</DefineConstants>
73
    <Optimize>true</Optimize>
74
    <DebugType>pdbonly</DebugType>
75
    <PlatformTarget>x64</PlatformTarget>
76
    <LangVersion>7.3</LangVersion>
77
    <ErrorReport>prompt</ErrorReport>
78
  </PropertyGroup>
79
  <PropertyGroup>
80 0a64fa85 taeseongkim
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
81 43e1d368 taeseongkim
  </PropertyGroup>
82 b4a1c7ff taeseongkim
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseAll_XI|AnyCPU'">
83
    <OutputPath>bin\ReleaseAll_XI\</OutputPath>
84
    <DefineConstants>TRACE</DefineConstants>
85
    <Optimize>true</Optimize>
86
    <DebugType>pdbonly</DebugType>
87
    <PlatformTarget>x64</PlatformTarget>
88
    <LangVersion>7.3</LangVersion>
89
    <ErrorReport>prompt</ErrorReport>
90
  </PropertyGroup>
91
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseAll_XI|x64'">
92
    <OutputPath>bin\x64\ReleaseAll_XI\</OutputPath>
93
    <DefineConstants>TRACE</DefineConstants>
94
    <Optimize>true</Optimize>
95
    <DebugType>pdbonly</DebugType>
96
    <PlatformTarget>x64</PlatformTarget>
97
    <LangVersion>7.3</LangVersion>
98
    <ErrorReport>prompt</ErrorReport>
99
    <Prefer32Bit>true</Prefer32Bit>
100
  </PropertyGroup>
101 d91efe5c taeseongkim
  <ItemGroup>
102
    <Reference Include="System" />
103
    <Reference Include="System.Core" />
104
    <Reference Include="System.ServiceProcess" />
105
    <Reference Include="System.Xml.Linq" />
106
    <Reference Include="System.Data.DataSetExtensions" />
107
    <Reference Include="Microsoft.CSharp" />
108
    <Reference Include="System.Data" />
109
    <Reference Include="System.Net.Http" />
110
    <Reference Include="System.Xml" />
111
  </ItemGroup>
112
  <ItemGroup>
113
    <Compile Include="Program.cs" />
114
    <Compile Include="Properties\AssemblyInfo.cs" />
115
  </ItemGroup>
116
  <ItemGroup>
117
    <None Include="App.config" />
118
    <None Include="Properties\app.manifest" />
119
  </ItemGroup>
120
  <ItemGroup>
121
    <ProjectReference Include="..\Markus.Service.Station\Markus.Service.Station.csproj">
122
      <Project>{bf8b3b13-30d5-482c-8452-a7511e96de97}</Project>
123
      <Name>Markus.Service.Station</Name>
124
    </ProjectReference>
125
  </ItemGroup>
126
  <ItemGroup>
127 a5e5fff6 taeseongkim
    <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
128
      <Visible>False</Visible>
129
      <ProductName>Microsoft .NET Framework 4.5.2%28x86 및 x64%29</ProductName>
130
      <Install>true</Install>
131
    </BootstrapperPackage>
132
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
133
      <Visible>False</Visible>
134
      <ProductName>.NET Framework 3.5 SP1</ProductName>
135
      <Install>false</Install>
136
    </BootstrapperPackage>
137 d91efe5c taeseongkim
  </ItemGroup>
138
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
139
  <PropertyGroup>
140 1d79913e taeseongkim
    <PreBuildEvent>if $(ConfigurationName) == Debug (
141
xcopy /y /d /I /s "$(SolutionDir)Markus.Service.ConvertProcess\bin\$(PlatformName)\$(ConfigurationName)\*.*" "$(TargetDir)\Convert"
142
xcopy /y /d /I /s "$(ProjectDir)..\publish\Plugin\*.*" "$(TargetDir)\Plugin"
143
xcopy /y /d /I /s "$(ProjectDir)..\publish\DownloadPlugin\*.*" "$(TargetDir)\DownloadPlugin"
144
)</PreBuildEvent>
145 d91efe5c taeseongkim
  </PropertyGroup>
146
</Project>
클립보드 이미지 추가 (최대 크기: 500 MB)