forked from NewLifeX/X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewLife.Agent.csproj
48 lines (41 loc) · 2.02 KB
/
NewLife.Agent.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>NewLife.Agent</AssemblyName>
<RootNamespace>NewLife.Agent</RootNamespace>
<AssemblyTitle>新生命服务代理</AssemblyTitle>
<Description>应用程序注册为系统服务,仅支持Windows</Description>
<Company>新生命开发团队</Company>
<Copyright>©2002-2019 新生命开发团队</Copyright>
<FileVersion>8.0.2019.0101</FileVersion>
<AssemblyVersion>8.0.*</AssemblyVersion>
<!--是否确定版本,false以支持*-->
<Deterministic>false</Deterministic>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>8.0.2019.0101</Version>
<RepositoryUrl>https://github.com/NewLifeX/X</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;RELEASE;NETSTANDARD2_0;__CORE__</DefineConstants>
<OutputPath>..\..\Bin</OutputPath>
<DocumentationFile>..\..\Bin\netstandard2.0\NewLife.Agent.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;__CORE__</DefineConstants>
<OutputPath>..\..\Bin</OutputPath>
<DocumentationFile>..\..\Bin\netstandard2.0\NewLife.Agent.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\NewLife.Core\Agent\AgentService.cs" Link="AgentService.cs" />
<Compile Include="..\NewLife.Core\Agent\AgentServiceBase.cs" Link="AgentServiceBase.cs" />
<Compile Include="..\NewLife.Core\Agent\ServiceHelper.cs" Link="ServiceHelper.cs" />
<Compile Include="..\NewLife.Core\Agent\Setting.cs" Link="Setting.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NewLife.CoreST\NewLife.CoreST.csproj" />
</ItemGroup>
</Project>