markus / ConvertService / ServiceBase / JobScheduler / JobScheduler.csproj @ f5d5b1ea
이력 | 보기 | 이력해설 | 다운로드 (3.91 KB)
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>{44A14CE4-40B2-4EA4-9F49-9666D05EF08D}</ProjectGuid> |
8 |
<OutputType>Exe</OutputType> |
9 |
<RootNamespace>JobScheduler</RootNamespace> |
10 |
<AssemblyName>JobScheduler</AssemblyName> |
11 |
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
12 |
<FileAlignment>512</FileAlignment> |
13 |
<Deterministic>true</Deterministic> |
14 |
</PropertyGroup> |
15 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
16 |
<PlatformTarget>AnyCPU</PlatformTarget> |
17 |
<DebugSymbols>true</DebugSymbols> |
18 |
<DebugType>full</DebugType> |
19 |
<Optimize>false</Optimize> |
20 |
<OutputPath>..\publish\JobScheduler\</OutputPath> |
21 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
22 |
<ErrorReport>prompt</ErrorReport> |
23 |
<WarningLevel>4</WarningLevel> |
24 |
</PropertyGroup> |
25 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
26 |
<PlatformTarget>AnyCPU</PlatformTarget> |
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 |
<ItemGroup> |
35 |
<Reference Include="ConfigParser, Version=0.3.4.3, Culture=neutral, processorArchitecture=MSIL"> |
36 |
<HintPath>..\packages\Salaros.ConfigParser.0.3.4\lib\net45\ConfigParser.dll</HintPath> |
37 |
</Reference> |
38 |
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"> |
39 |
<HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath> |
40 |
</Reference> |
41 |
<Reference Include="System" /> |
42 |
<Reference Include="System.Core" /> |
43 |
<Reference Include="System.Xml.Linq" /> |
44 |
<Reference Include="System.Data.DataSetExtensions" /> |
45 |
<Reference Include="Microsoft.CSharp" /> |
46 |
<Reference Include="System.Data" /> |
47 |
<Reference Include="System.Net.Http" /> |
48 |
<Reference Include="System.Xml" /> |
49 |
</ItemGroup> |
50 |
<ItemGroup> |
51 |
<Compile Include="..\Markus.Service.Convert\Plugin.cs"> |
52 |
<Link>Plugin.cs</Link> |
53 |
</Compile> |
54 |
<Compile Include="Program.cs" /> |
55 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
56 |
</ItemGroup> |
57 |
<ItemGroup> |
58 |
<None Include="..\Markus.Service.Station\Plugin.ini"> |
59 |
<Link>Plugin.ini</Link> |
60 |
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
61 |
</None> |
62 |
<None Include="App.config" /> |
63 |
<Content Include="Log.config"> |
64 |
<SubType>Designer</SubType> |
65 |
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
66 |
</Content> |
67 |
<None Include="packages.config" /> |
68 |
</ItemGroup> |
69 |
<ItemGroup> |
70 |
<ProjectReference Include="..\Markus.Service.Convert.IPlugin\Markus.Service.Convert.IPlugin.csproj"> |
71 |
<Project>{A5BA7325-379C-4CCB-B156-1704FC2175E3}</Project> |
72 |
<Name>Markus.Service.Convert.IPlugin</Name> |
73 |
</ProjectReference> |
74 |
<ProjectReference Include="..\Markus.Service.Extensions\Markus.Service.Extensions.csproj"> |
75 |
<Project>{5F983789-3E8F-4F9A-A601-138C3A83CA5F}</Project> |
76 |
<Name>Markus.Service.Extensions</Name> |
77 |
</ProjectReference> |
78 |
</ItemGroup> |
79 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
80 |
<PropertyGroup> |
81 |
<PostBuildEvent>xcopy /y /d /I "$(ProjectDir)..\publish\Plugin\DocItemCheck.*" "$(ProjectDir)$(OutDir)Plugin" |
82 |
xcopy /y /d /I "$(ProjectDir)..\publish\Plugin\*Entity*.*" "$(ProjectDir)$(OutDir)Plugin" |
83 |
xcopy /y /d /I "$(ProjectDir)..\publish\Plugin\log4net*.*" "$(ProjectDir)$(OutDir)Plugin" |
84 |
</PostBuildEvent> |
85 |
</PropertyGroup> |
86 |
</Project> |