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